Skip to content

Commit

Permalink
No print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Madsmal committed Jun 18, 2018
1 parent a1bca47 commit e80e6b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/application/Algorithm.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ else if (Model.recipe.tasks.task.get(i).attentionRequired == false && !ArrayUtil

// Stream converts List<integer> to int[].
taskSequence = sequence.stream().mapToInt(i->i).toArray();
System.out.println(java.util.Arrays.toString(taskSequence));
//System.out.println(java.util.Arrays.toString(taskSequence));

return taskSequence;
}
Expand Down

0 comments on commit e80e6b4

Please sign in to comment.