extract method: suggest Object as return value if extract from incomplete expression (IDEA-69722)

This commit is contained in:
Anna Kozlova
2014-12-05 17:35:39 +01:00
parent 8336b937ab
commit 72529af659
4 changed files with 25 additions and 0 deletions
@@ -0,0 +1,7 @@
class Test {
public static void main(String[] args) {
final Test s = new Test();
System.out.println(<selection>s.callAbsentMethod().toString()</selection>);
}
}