# HG changeset patch # User Markus Bröker # Date 1239879075 -7200 # Node ID 220d76d0d672651f56f9f7160226cdfd5b3ee139 # Parent 7ff8fc49cce4c2cf84fd9f79354bb49c852d65fb Platform Independend Newlines Java uses %n for platform independend newlines \r\n on windows, \n on linux and so on... committer: Markus Bröker diff --git a/libConsole/Console.java b/libConsole/Console.java --- 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); };