mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[java-completion] Complete statement: fix missing comma (IDEA-268441)
GitOrigin-RevId: 43c014680dc72429f349d667cc66c0920def1358
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a2628e3c90
commit
a2ebadc8dd
@@ -0,0 +1,13 @@
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
public class SomeClass {
|
||||
|
||||
public static List<String> someMethod() {
|
||||
return Arrays.asList(
|
||||
"first",
|
||||
"second"<caret>
|
||||
"third"
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user