inline superclass: don't start push refactoring (with find usages, etc) inside inline; don't collect usages in all inheritors when at the end only one would be processed (IDEA-152480)

This commit is contained in:
Anna Kozlova
2016-03-03 18:54:30 +01:00
parent 20a8fcc015
commit db30803bee
3 changed files with 54 additions and 59 deletions
@@ -2,6 +2,6 @@ class Test {
private final String field;
Test(){
field = "text";
this.field = "text";
}
}