You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jg...@apache.org on 2013/03/06 02:08:01 UTC

svn commit: r1453111 - /ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java

Author: jglick
Date: Wed Mar  6 01:08:01 2013
New Revision: 1453111

URL: http://svn.apache.org/r1453111
Log:
Was not compatible to make systemClasspath (and systemBootClasspath) final; the NetBeans Ant integration in fact overwrites this value (for a reason).

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java?rev=1453111&r1=1453110&r2=1453111&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java Wed Mar  6 01:08:01 2013
@@ -67,7 +67,7 @@ public class Path extends DataType imple
     // CheckStyle:VisibilityModifier OFF - bc
 
     /** The system classpath as a Path object */
-    public static final Path systemClasspath =
+    public static Path systemClasspath =
         new Path(null, System.getProperty("java.class.path"));
 
 
@@ -76,7 +76,7 @@ public class Path extends DataType imple
      *
      * @since Ant 1.6.2
      */
-    public static final Path systemBootClasspath =
+    public static Path systemBootClasspath =
         new Path(null, System.getProperty("sun.boot.class.path"));
 
     // CheckStyle:VisibilityModifier OFF - bc