IDEA-78597 Refactoring introduce field introduce silly assignment

This commit is contained in:
anna
2012-02-07 09:15:17 +01:00
parent 0678dc85f2
commit b54dd41ed0
4 changed files with 30 additions and 2 deletions
@@ -0,0 +1,12 @@
import java.util.ArrayList;
public class Test
{
public final ArrayList arrayList;
public Test()
{
arrayList = new ArrayList();
}
}
@@ -0,0 +1,10 @@
import java.util.ArrayList;
public class Test
{
public Test()
{
array<caret>List = new ArrayList();
}
}