Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Implemented
-
Trunk
-
None
-
None
Description
Replace for-loop with a forEach loop
List<String> topics = new LinkedList<>(); for (int i = 0; i < topicList.size(); i++) { GenericValue assoc = topicList.get(i);
Replace with
for (GenericValue assoc : topicList) {