fix way to get DataPoint
This commit is contained in:
parent
7e9ae2e1f1
commit
ee64e95be3
@ -25,7 +25,7 @@ public class BooleanDataPoint extends DataPoint{
|
||||
public String toString(){
|
||||
String s;
|
||||
s = this.getLabel();
|
||||
s += ": ";
|
||||
s += "=";
|
||||
s += this.getValue();
|
||||
return s;
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ public class FloatDataPoint extends DataPoint{
|
||||
public String toString(){
|
||||
String s;
|
||||
s = this.getLabel();
|
||||
s += ": ";
|
||||
s += "=";
|
||||
s += this.getValue();
|
||||
return s;
|
||||
}
|
||||
|
Reference in New Issue
Block a user