1
0

fix true/false

This commit is contained in:
Rémi Heredero 2023-05-17 20:52:53 +02:00
parent e306d5eacb
commit 76279a5d0d

View File

@ -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;
} }
} }