generate visibility setting for create from usage, generate getter/setter/constructor (IDEA-120662, IDEA-64613, IDEA-122025)

This commit is contained in:
Anna Kozlova
2014-04-16 16:42:09 +02:00
parent a850470ed2
commit 199e9d8119
17 changed files with 75 additions and 23 deletions
@@ -4,7 +4,7 @@ class Test {
private int c;
private final int d;
Test(int b, int d) {
public Test(int b, int d) {
this.b = b;
this.d = d;
}