mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-09 23:41:08 +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();
|
||||
prefManager.setUnderstood(true);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -288,7 +286,7 @@ public class DrugListActivity extends AppCompatActivity {
|
|||
Utils.sortPrescriptionList(prescriptionList);
|
||||
|
||||
// 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);
|
||||
if (currentPrescription.getTake() == 0) {
|
||||
prescriptionList.remove(currentPrescription);
|
||||
|
|
Loading…
Reference in a new issue