Fix typoos

This commit is contained in:
jacques 2022-07-14 13:41:59 +02:00
parent b2c60c8c24
commit fbc7fed6d2

View file

@ -151,8 +151,6 @@ public class DrugListActivity extends AppCompatActivity {
askForComprehensive(); askForComprehensive();
prefManager.setUnderstood(true); prefManager.setUnderstood(true);
} }
} }
@Override @Override
@ -288,7 +286,7 @@ public class DrugListActivity extends AppCompatActivity {
Utils.sortPrescriptionList(prescriptionList); Utils.sortPrescriptionList(prescriptionList);
// Move Prescription with take==0 to the end of the list // Move Prescription with take==0 to the end of the list
for (int i=0 ; i < prescriptionList.size(); i++ ){ for (int i=0 ; i < prescriptionList.size(); i++ ) {
currentPrescription = prescriptionList.get(i); currentPrescription = prescriptionList.get(i);
if (currentPrescription.getTake() == 0) { if (currentPrescription.getTake() == 0) {
prescriptionList.remove(currentPrescription); prescriptionList.remove(currentPrescription);