From 1f7a1b10db8d8dd123619428d2aca889d11a4d55 Mon Sep 17 00:00:00 2001 From: Clayton Wilson Date: Sat, 31 Oct 2020 20:35:31 -0400 Subject: [PATCH] Remove print statements --- Listify/app/src/main/java/com/example/listify/ListPage.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Listify/app/src/main/java/com/example/listify/ListPage.java b/Listify/app/src/main/java/com/example/listify/ListPage.java index b821dcf..a914890 100644 --- a/Listify/app/src/main/java/com/example/listify/ListPage.java +++ b/Listify/app/src/main/java/com/example/listify/ListPage.java @@ -171,11 +171,7 @@ public class ListPage extends AppCompatActivity implements Requestor.Receiver { } // Increment total price - System.out.println(totalPrice); - System.out.println(item.getPrice().doubleValue()); - System.out.println(entry.getQuantity()); totalPrice += (item.getPrice().doubleValue() * entry.getQuantity()); - System.out.println(totalPrice); } }