Remove not needed functions
This commit is contained in:
parent
bf412ea798
commit
87782377a5
1 changed files with 0 additions and 16 deletions
|
@ -523,29 +523,13 @@ public class Profile {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getTargetUnits() {
|
|
||||||
if (units.equals(Constants.MGDL)) {
|
|
||||||
return getTargetMgdl(secondsFromMidnight());
|
|
||||||
} else {
|
|
||||||
return getTargetMmol(secondsFromMidnight());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public double getTargetMgdl() {
|
public double getTargetMgdl() {
|
||||||
return getTargetMgdl(secondsFromMidnight());
|
return getTargetMgdl(secondsFromMidnight());
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getTargetMmol() {
|
|
||||||
return getTargetMmol(secondsFromMidnight());
|
|
||||||
}
|
|
||||||
|
|
||||||
public double getTargetMgdl(int timeAsSeconds) {
|
public double getTargetMgdl(int timeAsSeconds) {
|
||||||
return toMgdl((getTargetLowTimeFromMidnight(timeAsSeconds) + getTargetHighTimeFromMidnight(timeAsSeconds)) / 2, units);
|
return toMgdl((getTargetLowTimeFromMidnight(timeAsSeconds) + getTargetHighTimeFromMidnight(timeAsSeconds)) / 2, units);
|
||||||
}
|
}
|
||||||
public double getTargetMmol(int timeAsSeconds) {
|
|
||||||
return toMmol((getTargetLowTimeFromMidnight(timeAsSeconds) + getTargetHighTimeFromMidnight(timeAsSeconds)) / 2, units);
|
|
||||||
}
|
|
||||||
|
|
||||||
public double getTargetLowMgdl() {
|
public double getTargetLowMgdl() {
|
||||||
return toMgdl(getTargetLowTimeFromMidnight(secondsFromMidnight()), units);
|
return toMgdl(getTargetLowTimeFromMidnight(secondsFromMidnight()), units);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue