Return-Path: X-Original-To: apmail-ant-notifications-archive@minotaur.apache.org Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E1DB19A05 for ; Mon, 5 Mar 2012 18:49:53 +0000 (UTC) Received: (qmail 58780 invoked by uid 500); 5 Mar 2012 18:49:53 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 58757 invoked by uid 500); 5 Mar 2012 18:49:53 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 58750 invoked by uid 99); 5 Mar 2012 18:49:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Mar 2012 18:49:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Mar 2012 18:49:51 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C55632388865 for ; Mon, 5 Mar 2012 18:49:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1297164 - /ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java Date: Mon, 05 Mar 2012 18:49:30 -0000 To: notifications@ant.apache.org From: jglick@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120305184930.C55632388865@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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