Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0.0RC1
-
Fix Version/s: 2.0.1Release
-
Component/s: Content Assist
-
Labels:None
-
Environment:latest snapshot
-
Testcase included:yes
-
Number of attachments :
Description
the following code offers the correct proposals when pressing Ctrl+space with the cursor after VAL
class CompletionStatic {
private static final String VALUE1 = "1"
private static final String VALUE2 = "2"
def method() {
Collections.sort(VAL)
}
}
if you remove the parenthesis of the sort method - Collections.sort VAL - then VALUE1 and VALUE2 are not shown any more in code completion
Interesting...I'll have a look.