Pg: 360
Status: Fixed
Fixed in Build: 1.13
Reported On: 2019-11-23
Reported By: vdomanico
|
Location: The removeIf method in section 14.1.5
Old Text: List iList = new List.of(1, 2, 3, 4, 5, 6);
New Text: List iList = new ArrayList<>(List.of(1, 2, 3, 4, 5, 6));
Comments:
|