Pg 353 : 12.4.1

Date: 2019-04-26
Status: Fixed
Fixedinbuild:
18
Old Text:
//insert an object at index 2 al.add(2, "david"); //remove object at index 0 al.remove(0); //process objects in the list for(Object o : al){
New Text:
al.add(2, "david");//insert an object at index 2 al.remove(0);//remove object at index 0 for(Object o : al){ //process objects in the list
Comments:
Comments are off by a line
Reportedby:
OCAJ01

 Back