mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
don't suggest to call methods in anonymous class bodies
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class A {
|
||||
A() {
|
||||
new Runnable() {
|
||||
pri<caret>
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
public void prepareImage() {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
class A {
|
||||
A() {
|
||||
new Runnable() {
|
||||
private <caret>
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
public void prepareImage() {}
|
||||
}
|
||||
Reference in New Issue
Block a user