bugfix, fixed unicode

This commit is contained in:
Ziver Koc 2016-08-25 22:53:07 +02:00
parent 197d554bee
commit c83c565746

View file

@ -38,6 +38,6 @@ public class TemperatureSensorData extends HalSensorData {
@Override @Override
public String toString(){ public String toString(){
return temperature+" \\u00b0C"; return temperature+" \u00b0C";
} }
} }