Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions latte/src/main/java/api/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ public class App {
* @param args
*/
public static void main( String[] args ){

if (args.length == 0) {
System.out.println("Please enter the path to the file you want to process");
String allPath = "latte/src/main/java/examples/MyStackTest.java";
launcher(allPath, true);
String allPath = "src/main/java/examples/MyStackTest.java";
launcher(allPath, false);

} else if (args.length == 1 && args[0].equals("-multi")) {
// Analyze multiple files from command line
Expand Down