You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2018/09/19 19:06:10 UTC

ant git commit: The information of the -nice and -nouserlib flags was not formatted properly.

Repository: ant
Updated Branches:
  refs/heads/1.9.x c07bd8668 -> a746e1366


The information of the -nice and -nouserlib flags was not formatted properly.


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/a746e136
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/a746e136
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/a746e136

Branch: refs/heads/1.9.x
Commit: a746e136656f7c68d06a7255162253206b4749fb
Parents: c07bd86
Author: Maarten Coene <ma...@apache.org>
Authored: Wed Sep 19 21:05:48 2018 +0200
Committer: Maarten Coene <ma...@apache.org>
Committed: Wed Sep 19 21:05:48 2018 +0200

----------------------------------------------------------------------
 src/main/org/apache/tools/ant/Main.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/a746e136/src/main/org/apache/tools/ant/Main.java
----------------------------------------------------------------------
diff --git a/src/main/org/apache/tools/ant/Main.java b/src/main/org/apache/tools/ant/Main.java
index 33dae8c..704b565 100644
--- a/src/main/org/apache/tools/ant/Main.java
+++ b/src/main/org/apache/tools/ant/Main.java
@@ -1046,10 +1046,10 @@ public class Main implements AntMain {
         System.out.println("  -inputhandler <class>  the class which will handle input requests");
         System.out.println("  -find <file>           (s)earch for buildfile towards the root of");
         System.out.println("    -s  <file>           the filesystem and use it");
-        System.out.println("  -nice  number          A niceness value for the main thread:"
-                + "                         1 (lowest) to 10 (highest); 5 is the default");
-        System.out.println("  -nouserlib             Run ant without using the jar files from"
-                + "                         ${user.home}/.ant/lib");
+        System.out.println("  -nice  number          A niceness value for the main thread:");
+        System.out.println("                         1 (lowest) to 10 (highest); 5 is the default");
+        System.out.println("  -nouserlib             Run ant without using the jar files from");
+        System.out.println("                         ${user.home}/.ant/lib");
         System.out.println("  -noclasspath           Run ant without using CLASSPATH");
         System.out.println("  -autoproxy             Java1.5+: use the OS proxy settings");
         System.out.println("  -main <class>          override Ant's normal entry point");