gitweb on Svarog

projekti pod git sistemom za održavanje verzija -- projects under the git version control system
minor - use System.err for error messages
authorDoni Pracner <quinnuendo@gmail.com>
Sun, 27 Jul 2014 22:42:05 +0000 (00:42 +0200)
committerDoni Pracner <quinnuendo@gmail.com>
Sun, 27 Jul 2014 22:42:05 +0000 (00:42 +0200)
src/com/quemaster/transformations/mjc2wsl/mjc2wsl.java

index 3eac782..68fd2a1 100644 (file)
@@ -832,13 +832,13 @@ public class mjc2wsl{
                        }
 
                        if (i >= args.length) {
-                               System.out.println("no filename supplied");
+                               System.err.println("no filename supplied");
                                System.exit(2);
                        }
 
                        Path p = FileSystems.getDefault().getPath(args[i]);
                        if (!Files.exists(p)){
-                               System.out.println("input file does not exist");
+                               System.err.println("input file does not exist");
                                System.exit(1);
                        }
 
Svarog.pmf.uns.ac.rs/gitweb maintanance Doni Pracner