|
|
@@ -17,7 +17,6 @@ public class MutableBool implements Comparable<MutableBool>, Mutable<Boolean>, S
|
|
|
* 构造,默认值0
|
|
|
*/
|
|
|
public MutableBool() {
|
|
|
- super();
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
@@ -25,7 +24,6 @@ public class MutableBool implements Comparable<MutableBool>, Mutable<Boolean>, S
|
|
|
* @param value 值
|
|
|
*/
|
|
|
public MutableBool(final boolean value) {
|
|
|
- super();
|
|
|
this.value = value;
|
|
|
}
|
|
|
|
|
|
@@ -35,7 +33,6 @@ public class MutableBool implements Comparable<MutableBool>, Mutable<Boolean>, S
|
|
|
* @throws NumberFormatException 转为Boolean错误
|
|
|
*/
|
|
|
public MutableBool(final String value) throws NumberFormatException {
|
|
|
- super();
|
|
|
this.value = Boolean.parseBoolean(value);
|
|
|
}
|
|
|
|