Merge branch 'dev' into sens-cutoff
This commit is contained in:
commit
a3c3c52249
|
@ -205,7 +205,7 @@ public class Profile {
|
||||||
|
|
||||||
if (targetHigh_v.size() != targetLow_v.size()) isValid = false;
|
if (targetHigh_v.size() != targetLow_v.size()) isValid = false;
|
||||||
else for (int i = 0; i < targetHigh_v.size(); i++)
|
else for (int i = 0; i < targetHigh_v.size(); i++)
|
||||||
if (targetHigh_v.get(i) < targetLow_v.get(i))
|
if (targetHigh_v.valueAt(i) < targetLow_v.valueAt(i))
|
||||||
isValid = false;
|
isValid = false;
|
||||||
|
|
||||||
isValidated = true;
|
isValidated = true;
|
||||||
|
@ -559,7 +559,8 @@ public class Profile {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String toSignedUnitsString(Double valueInMgdl, Double valueInMmol, String units) {
|
public static String toSignedUnitsString(Double valueInMgdl, Double valueInMmol, String units) {
|
||||||
if (units.equals(Constants.MGDL)) return (valueInMgdl > 0 ? "+" : "") + DecimalFormatter.to0Decimal(valueInMgdl);
|
if (units.equals(Constants.MGDL))
|
||||||
|
return (valueInMgdl > 0 ? "+" : "") + DecimalFormatter.to0Decimal(valueInMgdl);
|
||||||
else return (valueInMmol > 0 ? "+" : "") + DecimalFormatter.to1Decimal(valueInMmol);
|
else return (valueInMmol > 0 ? "+" : "") + DecimalFormatter.to1Decimal(valueInMmol);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue