no double whitespace
This commit is contained in:
parent
0818f3b419
commit
414f92bdf8
1 changed files with 3 additions and 3 deletions
|
@ -325,13 +325,13 @@ public class TemporaryBasal implements Interval {
|
||||||
if(profile != null) {
|
if(profile != null) {
|
||||||
double basal = profile.getBasal();
|
double basal = profile.getBasal();
|
||||||
if(basal != 0){
|
if(basal != 0){
|
||||||
return Math.round(rate*100d/basal) + "% ";
|
return Math.round(rate*100d/basal) + "%";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return DecimalFormatter.to2Decimal(rate) + "U/h ";
|
return DecimalFormatter.to2Decimal(rate) + "U/h";
|
||||||
} else { // percent
|
} else { // percent
|
||||||
return percentRate + "% ";
|
return percentRate + "%";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue