mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-16 10:48:46 +00:00
Remove print statements
This commit is contained in:
parent
d9ea934021
commit
1f7a1b10db
@ -171,11 +171,7 @@ public class ListPage extends AppCompatActivity implements Requestor.Receiver {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Increment total price
|
// Increment total price
|
||||||
System.out.println(totalPrice);
|
|
||||||
System.out.println(item.getPrice().doubleValue());
|
|
||||||
System.out.println(entry.getQuantity());
|
|
||||||
totalPrice += (item.getPrice().doubleValue() * entry.getQuantity());
|
totalPrice += (item.getPrice().doubleValue() * entry.getQuantity());
|
||||||
System.out.println(totalPrice);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user