Closed NianyiYang closed 8 years ago
+1
public Builder setDestructive(String[] destructive) {
this.destructive = destructive;
return this;
}
改为
public Builder setDestructive(String... destructive) {
this.destructive = destructive;
return this;
}
这样比较好构建些
支持Builder模式
原来的构造方法未修改,仍然保留