Skip to content

Commit

Permalink
Merge pull request #124 from kishore03109/master
Browse files Browse the repository at this point in the history
Fixed overview bug in Linux OS
  • Loading branch information
kishore03109 authored Oct 31, 2019
2 parents 26b9098 + efe287e commit b9d0e11
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/javacake/commands/OverviewCommand.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package javacake.commands;

import edu.emory.mathcs.backport.java.util.Collections;
import javacake.Logic;
import javacake.exceptions.CakeException;
import javacake.storage.StorageManager;
Expand Down Expand Up @@ -84,6 +85,7 @@ private String processJarFile(CodeSource src) throws CakeException {
collectionOfNames.add(name);
}
}
Collections.sort(collectionOfNames);
List<String> result = processFileNames(collectionOfNames);
sb.append(String.join("\n", result)).append("\n");
sb.append(getEndingMessage());
Expand Down

0 comments on commit b9d0e11

Please sign in to comment.