Browse Source

whitespace + javadoc

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277569 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 20 years ago
parent
commit
8c5847195e
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/main/org/apache/tools/ant/launch/Launcher.java

+ 2
- 1
src/main/org/apache/tools/ant/launch/Launcher.java View File

@@ -38,6 +38,7 @@ public class Launcher {
/** The Ant Library Directory property */ /** The Ant Library Directory property */
public static final String ANTLIBDIR_PROPERTY = "ant.library.dir"; 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"; public static final String ANT_PRIVATEDIR = ".ant";


/** /**
@@ -46,7 +47,7 @@ public class Launcher {
public static final String ANT_PRIVATELIB = "lib"; public static final String ANT_PRIVATELIB = "lib";


/** The location of a per-user library directory */ /** 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 */ /** The startup class that is to be run */
public static final String MAIN_CLASS = "org.apache.tools.ant.Main"; public static final String MAIN_CLASS = "org.apache.tools.ant.Main";


Loading…
Cancel
Save