Details
-
Type:
New Feature
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 2.5.2.Release
-
Fix Version/s: None
-
Component/s: Quick fix/assist
-
Labels:
-
Number of attachments :
Description
This quick fix will convert from a for expression to an each expression. Eg-
for (x in list) {
...
}
becomes
list.each { x ->
...
}