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 2012/03/05 19:49:30 UTC

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

Author: jglick
Date: Mon Mar  5 18:49:30 2012
New Revision: 1297164

URL: http://svn.apache.org/viewvc?rev=1297164&view=rev
Log:
MS_SHOULD_BE_FINAL

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=1297164&r1=1297163&r2=1297164&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 Mon Mar  5 18:49:30 2012
@@ -67,7 +67,7 @@ public class Path extends DataType imple
     // CheckStyle:VisibilityModifier OFF - bc
 
     /** The system classpath as a Path object */
-    public static Path systemClasspath =
+    public static final 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 Path systemBootClasspath =
+    public static final Path systemBootClasspath =
         new Path(null, System.getProperty("sun.boot.class.path"));
 
     private static final Iterator EMPTY_ITERATOR