1
0

fix way to get DataPoint

This commit is contained in:
Rémi Heredero 2023-05-17 14:13:55 +02:00
parent 7e9ae2e1f1
commit ee64e95be3
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ public class BooleanDataPoint extends DataPoint{
public String toString(){
String s;
s = this.getLabel();
s += ": ";
s += "=";
s += this.getValue();
return s;
}

View File

@ -25,7 +25,7 @@ public class FloatDataPoint extends DataPoint{
public String toString(){
String s;
s = this.getLabel();
s += ": ";
s += "=";
s += this.getValue();
return s;
}