Profile.getValuesList: don't add trailing newline.
This commit is contained in:
parent
a6351f4455
commit
5991f307af
1 changed files with 2 additions and 1 deletions
|
@ -212,7 +212,8 @@ public class Profile {
|
||||||
retValue += format.format(o2.getDouble("value"));
|
retValue += format.format(o2.getDouble("value"));
|
||||||
}
|
}
|
||||||
retValue += " " + units;
|
retValue += " " + units;
|
||||||
retValue += "\n";
|
if (index + 1 < array.length())
|
||||||
|
retValue += "\n";
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue