bunch of revisions, still in progress

This commit is contained in:
Vikram
2019-02-24 19:00:38 -07:00
parent 6511f40b8b
commit 5e64bc95dc
8 changed files with 196 additions and 137 deletions

View File

@@ -44,7 +44,6 @@ public class Warehouse {
}
String good;
System.out.println("Please enter a good to transfer O, S, G, A :");
Scanner keyboard = new Scanner(System.in);
good = keyboard.nextLine();
int held = 0;
if (amount > 0) {
@@ -96,7 +95,6 @@ public class Warehouse {
String good;
System.out.println("Please enter a good to transfer O, S, G, A :");
Scanner keyboard = new Scanner(System.in);
good = keyboard.nextLine();
int held = 0;
if (amount > 0) {
@@ -155,7 +153,6 @@ public class Warehouse {
String check;
System.out.println("Would you like to do any other business? Y / N?");
Scanner keyboard = new Scanner(System.in);
check = keyboard.nextLine();
if(check.equalsIgnoreCase("Y")) {