-
Type:
Story
-
Status: Closed
-
Priority:
Minor
-
Resolution: Completed
-
Affects Version/s: None
-
Fix Version/s: 7.0.0 DXP FP35, 7.0.0 DXP SP7, 7.0.5 CE GA6, 7.0.X, 7.1.X, Master
-
Component/s: Dev Tools > Source Formatter, Performance
-
Branch Version/s:7.0.x
-
Backported to Branch:Committed
-
Priority Level:Low
-
Epic Link:
Instead of using the general for-loop:
for (int i = 0; i < names.length; i++) { String name = names[i]; ... }
use the enhanced for-loop:
for (String name : names) { ... }