java complete statement: don't put closing parenthesis before caret (IDEA-225079)

GitOrigin-RevId: ae2d530e850b4051f4c90ccab8dcdecf01e74eca
This commit is contained in:
peter
2019-10-21 13:14:46 +02:00
committed by intellij-monorepo-bot
parent 26a0dc94dd
commit f71bd07b0b
6 changed files with 43 additions and 17 deletions

View File

@@ -0,0 +1,5 @@
class Test {
Object method() {
String.format("%d, %d", 1, 2<caret>
}
}