This commit is contained in:
shivg7706
2018-10-27 08:24:42 +05:30
parent 203f006e96
commit 7fc41e87d7

View File

@ -31,8 +31,8 @@ class Schedule {
processes = new ArrayList<Process>();
remainingProcess = new ArrayList<Process>();
gantChart = new ArrayList<Integer>();
arrivals = new HashMap<Integer, ArrayList<Process>>();
gantChart = new ArrayList<>();
arrivals = new HashMap<>();
System.out.print("Enter the no. of processes: ");
noOfProcess = in.nextInt();