File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
liquidjava-verifier/src/main/java/liquidjava/api Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 1010
1111public class CommandLineLauncher {
1212 public static void main (String [] args ) {
13- String allPath = ".. /liquidjava-example/src/main/java/test/project " ;
13+ String allPath = "./liquidjava-example/src/main/java/test/currentlyTesting " ;
1414
1515 // String allPath = "C://Regen/test-projects/src/Main.java";
1616 // In eclipse only needed this:"../liquidjava-example/src/main/java/"
1717 // In VSCode needs:
1818 // "../liquidjava/liquidjava-umbrella/liquidjava-example/src/main/java/liquidjava/test/project";
1919 String file = args .length == 0 ? allPath : args [0 ];
2020 ErrorEmitter ee = launch (file );
21- if (ee .foundError ()) {
22- System .out .println (ee .getFullMessage ());
23- System .out .println ("Before exit" );
24- System .exit (ee .getErrorStatus ());
25- } else {
26- System .err .println ("Passed verification!" );
27- }
21+ System .out .println (ee .foundError ()? (ee .getFullMessage ()):("Correct! Passed Verification." ));
2822
2923 }
3024
You can’t perform that action at this time.
0 commit comments