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(){
|
public String toString(){
|
||||||
String s;
|
String s;
|
||||||
s = this.getLabel();
|
s = this.getLabel();
|
||||||
s += ": ";
|
s += "=";
|
||||||
s += this.getValue();
|
s += this.getValue();
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@ public class FloatDataPoint extends DataPoint{
|
|||||||
public String toString(){
|
public String toString(){
|
||||||
String s;
|
String s;
|
||||||
s = this.getLabel();
|
s = this.getLabel();
|
||||||
s += ": ";
|
s += "=";
|
||||||
s += this.getValue();
|
s += this.getValue();
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user