create constructor parameter from field: suggest to choose fields to create parameters from (IDEA-76417);

insert parameters in "fields" order (IDEA-81634)
This commit is contained in:
anna
2012-02-21 20:56:16 +01:00
parent 077cbe9645
commit 7e2db60abd
5 changed files with 178 additions and 76 deletions
@@ -4,11 +4,11 @@ class A {
private int j;
A(int field) {
this(0, field);
this(field, 0);
}
A(int j, int field) {
this.j = j;
A(int field, int j) {
this.field = field;
this.j = j;
}
}