You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invoke content assist at the given caret position and choose sort(boolean mutate, Closure closure).
[].sort|
If Use named arguments for method calls and Place trailing closure arguments after closing parenthesis are both checked in Window > Preferences > Groovy > Editor > Content Assist, the following is inserted:
[].sort(mutate: mutate) closure: closure
or
[].sort(mutate: mutate) closure: { it }
if Use closure literals for closure arguments is also checked.
The argument name outside the parens is a syntax error.
The text was updated successfully, but these errors were encountered:
Invoke content assist at the given caret position and choose sort(boolean mutate, Closure closure).
[].sort|
If Use named arguments for method calls and Place trailing closure arguments after closing parenthesis are both checked in Window > Preferences > Groovy > Editor > Content Assist, the following is inserted:
or
if Use closure literals for closure arguments is also checked.
The argument name outside the parens is a syntax error.
The text was updated successfully, but these errors were encountered: