From 26337bb13561b001c2d7892e637961099f1644bf Mon Sep 17 00:00:00 2001 From: "Jesse N. Glick" Date: Mon, 5 Mar 2012 18:49:30 +0000 Subject: [PATCH] MS_SHOULD_BE_FINAL git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1297164 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/Path.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/types/Path.java b/src/main/org/apache/tools/ant/types/Path.java index 5cf16b00e..c209b31d5 100644 --- a/src/main/org/apache/tools/ant/types/Path.java +++ b/src/main/org/apache/tools/ant/types/Path.java @@ -67,7 +67,7 @@ public class Path extends DataType implements Cloneable, ResourceCollection { // 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 implements Cloneable, ResourceCollection { * * @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