Inline inner: check when possible to inline this ref only (IDEA-39274)

This commit is contained in:
anna
2010-01-29 17:07:23 +03:00
parent 22353e8a58
commit de02933e05
14 changed files with 220 additions and 18 deletions
@@ -0,0 +1,11 @@
public class Simple implements Runnable {
public void run(){}
}
class Usage {
void foo() {
bar(new Si<caret>mple());
}
void bar(Runnable... r){}
}