Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 43058 invoked from network); 2 Feb 2005 09:09:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 2 Feb 2005 09:09:17 -0000 Received: (qmail 47625 invoked by uid 500); 2 Feb 2005 09:09:14 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 47530 invoked by uid 500); 2 Feb 2005 09:09:14 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 47514 invoked by uid 500); 2 Feb 2005 09:09:13 -0000 Received: (qmail 47511 invoked by uid 99); 2 Feb 2005 09:09:13 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 02 Feb 2005 01:09:13 -0800 Received: (qmail 43027 invoked by uid 1539); 2 Feb 2005 09:09:12 -0000 Date: 2 Feb 2005 09:09:12 -0000 Message-ID: <20050202090912.43026.qmail@minotaur.apache.org> From: peterreilly@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/launch Launcher.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N peterreilly 2005/02/02 01:09:12 Modified: src/main/org/apache/tools/ant/launch Launcher.java Log: whitespace + javadoc Revision Changes Path 1.28 +2 -1 ant/src/main/org/apache/tools/ant/launch/Launcher.java Index: Launcher.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/launch/Launcher.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- Launcher.java 28 Jan 2005 23:18:32 -0000 1.27 +++ Launcher.java 2 Feb 2005 09:09:12 -0000 1.28 @@ -38,6 +38,7 @@ /** The Ant Library Directory property */ public static final String ANTLIBDIR_PROPERTY = "ant.library.dir"; + /** The directory name of the per-user ant directory */ public static final String ANT_PRIVATEDIR = ".ant"; /** @@ -46,7 +47,7 @@ public static final String ANT_PRIVATELIB = "lib"; /** The location of a per-user library directory */ - public static final String USER_LIBDIR = ANT_PRIVATEDIR+"/"+ ANT_PRIVATELIB; + public static final String USER_LIBDIR = ANT_PRIVATEDIR + "/" + ANT_PRIVATELIB; /** The startup class that is to be run */ public static final String MAIN_CLASS = "org.apache.tools.ant.Main"; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org