Skip to content
Snippets Groups Projects
Commit 99eaf56f authored by lstrsrmn's avatar lstrsrmn
Browse files

Updated gitignore

parent c416f8fb
No related branches found
No related tags found
No related merge requests found
......@@ -6,3 +6,5 @@
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
../.idea
../out
\ No newline at end of file
......@@ -3,7 +3,7 @@ import java.io.FileNotFoundException;
import java.util.*;
/**
* the main class, runs all the sub-routinse
* the main class, runs all the sub-routine
*/
public class Interpreter {
public static void main(String[] args) {
......@@ -39,9 +39,9 @@ public class Interpreter {
}
}
catch (FileNotFoundException e){
System.out.println("File can't be found.");
e.printStackTrace();
// System.exit(1);
System.err.println("File can't be found.");
// e.printStackTrace();
System.exit(1);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment