Skip to content

Commit

Permalink
cleanup print stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Langensiepen committed May 21, 2013
1 parent cc4e0fd commit 39665c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Scheduler.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void addCompletedJob(Job job) {

public void printGannt() {
System.out.println("GANNT CHART:");
System.out.println("Time TimeDelta Job");
System.out.println("Time TimeDelta Job");
System.out.println("---------------------------------------------");
for (Job job : completedJobs) {
String initTime = formatInitString(job);
Expand Down
4 changes: 4 additions & 0 deletions scheduleInput.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
1 0 300
2 100 300
3 300 300

0 comments on commit 39665c2

Please sign in to comment.