enable introduce before void statement but with non-void qualifier (IDEA-76726 )

This commit is contained in:
anna
2011-11-13 16:05:46 +01:00
parent 412259f73d
commit 6156f780a6
4 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
class Test {
void foo() {
Object c = getObject();
c.notify();
}
Object getObject() {return null;}
}

View File

@@ -0,0 +1,7 @@
class Test {
void foo() {
<caret>getObject().notify();
}
Object getObject() {return null;}
}