remove unused code

This commit is contained in:
Milos Kozak 2022-05-27 20:16:56 +02:00
parent 0eb34c5abc
commit 50a89a7890

View file

@ -1,25 +0,0 @@
package info.nightscout.androidaps.plugins.treatments;
public class TreatmentUpdateReturn {
public TreatmentUpdateReturn(boolean success, boolean newRecord) {
this.success = success;
this.newRecord = newRecord;
}
boolean newRecord;
boolean success;
@Override
public String toString() {
return "UpdateReturn [" +
"newRecord=" + newRecord +
", success=" + success +
']';
}
}