libConsole/Console.java
changeset 83 220d76d0d672
parent 55 2a20d0184041
child 134 8325a0fc22cd
--- a/libConsole/Console.java
+++ b/libConsole/Console.java
@@ -3,10 +3,10 @@
     private static void help () {
         String p = System.getProperty ("java.library.path");
         String[] msg = p.split (":");
-        System.err.printf ("Console Error:\n");
+        System.err.printf ("Console Error:%n");
 
         for (int i = 0; i < msg.length; i++)
-            System.err.printf ("\t%s\n", msg[i]);
+            System.err.printf ("\t%s%n", msg[i]);
         System.exit (-1);
     };