get rid of groovy duplication; treat same name fields/params in constructor generation (IDEA-148338)

This commit is contained in:
Anna Kozlova
2015-11-27 18:04:56 +01:00
parent ba78dc9fd8
commit e36070c6d8
9 changed files with 146 additions and 99 deletions
@@ -3,7 +3,7 @@ public class Clas extends Clas2{
public Clas(int foo, int foo1) {<caret>
super(foo);
foo = foo1;
this.foo = foo1;
}
}