replace constructor with builder: do not miss default values ( IDEA-54303 )

This commit is contained in:
anna
2010-04-26 17:56:49 +04:00
parent 7a9cd52296
commit 44235fb387
2 changed files with 2 additions and 2 deletions
@@ -1,5 +1,5 @@
public class Builder {
private int i;
private int i = 2;
public Builder setI(int i) {
this.i = i;