ggregory    2003/10/22 20:55:35

  Modified:    lang/src/java/org/apache/commons/lang SystemUtils.java
  Log:
  Added JAVA_ENDORSED_DIRS.
  
  Revision  Changes    Path
  1.25      +13 -1     
jakarta-commons/lang/src/java/org/apache/commons/lang/SystemUtils.java
  
  Index: SystemUtils.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/SystemUtils.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- SystemUtils.java  7 Oct 2003 20:59:46 -0000       1.24
  +++ SystemUtils.java  23 Oct 2003 03:55:34 -0000      1.25
  @@ -133,6 +133,17 @@
       public static final String JAVA_COMPILER = getSystemProperty("java.compiler");
   
       /**
  +     * <p>The <code>java.endorsed.dirs</code> System Property. Path of endorsed 
directory
  +     * or directories.</p>
  +     *
  +     * <p>Defaults to <code>null</code> if the runtime does not have
  +     * security access to read this property or the property does not exist.</p>
  +     * 
  +     * @since Java 1.4
  +     */
  +    public static final String JAVA_ENDORSED_DIRS = 
getSystemProperty("java.endorsed.dirs");
  +
  +    /**
        * <p>The <code>java.ext.dirs</code> System Property. Path of extension 
directory
        * or directories.</p>
        *
  @@ -725,6 +736,7 @@
        * instance to operate.</p>
        */
       public SystemUtils() {
  +        // no init.
       }
       
       //-----------------------------------------------------------------------    
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to