-
Type:
Improvement
-
Status: Closed
-
Priority:
Minor
-
Resolution: Implemented
-
Affects Version/s: Trunk
-
Fix Version/s: Upcoming Branch
-
Component/s: ALL COMPONENTS
-
Labels:None
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) {