mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
IDEA-68660 ctrl-shift-enter does not insert a semicolon after anonymous implementation
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Foo {
|
||||
void a() {
|
||||
Runnable r = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
|
||||
}
|
||||
}<caret>
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
class Foo {
|
||||
void a() {
|
||||
Runnable r = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
|
||||
}
|
||||
};<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user