mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-13 00:51:35 +01:00
Fix typoos
This commit is contained in:
parent
b2c60c8c24
commit
fbc7fed6d2
1 changed files with 1 additions and 3 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue