[java-completion] MissingArrayInitializerBraceFixer: use EnterAfterUnmatchedBraceHandler (IDEA-282469)

GitOrigin-RevId: 29a477bf9a7b726ef2d56c7e0ad7f82c8621d8b7
This commit is contained in:
Tagir Valeev
2021-11-17 17:31:31 +07:00
committed by intellij-monorepo-bot
parent 6775b54e18
commit 2d19324846
8 changed files with 53 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
class Scratch {
public static void main(String[] args) {
String[][] foo = {{"a", "b", "c"}};
}
}