IDEA-209627 Completion: method modifiers are not suggested for method if the previous method does not have semicolon

GitOrigin-RevId: 2f37ffd3fe6cec0d51d9f469cec8bb5acb7327c3
This commit is contained in:
peter
2019-05-23 20:56:22 +03:00
committed by intellij-monorepo-bot
parent 90b01d96fc
commit 9fae508cc4
3 changed files with 14 additions and 3 deletions
@@ -0,0 +1,7 @@
interface Foo {
void foo()
/**
foo bar
*/
<caret>void bar()
}