[java-completion] IDEA-285384 Create else-if live template

GitOrigin-RevId: 8a8c932a9f51df845e536c8d670cccb08b01e108
This commit is contained in:
Tagir Valeev
2021-12-22 04:14:15 +00:00
committed by intellij-monorepo-bot
parent 7e9975d69e
commit 66d79effa2
11 changed files with 97 additions and 0 deletions
@@ -0,0 +1,8 @@
import java.util.*;
class Foo {
void test(int x){
if(x > 0) {}
<caret>else {}
}
}