fix true/false
This commit is contained in:
parent
e306d5eacb
commit
76279a5d0d
@ -26,7 +26,7 @@ public class BooleanDataPoint extends DataPoint{
|
|||||||
String s;
|
String s;
|
||||||
s = this.getLabel();
|
s = this.getLabel();
|
||||||
s += "=";
|
s += "=";
|
||||||
s += this.getValue();
|
s += this.getValue() ? "1" : "0";
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user