o Removed final modifiers

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@738169 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-01-27 17:56:33 +00:00
parent 5888994149
commit 3850e36381
1 changed files with 8 additions and 2 deletions

View File

@ -24,6 +24,12 @@ package org.apache.maven.project.builder;
*/
public class ProjectUri
{
/*
* NOTE: The strings defined here are deliberately non-final to prevent the compiler from inlining them when
* downstream code compiles against them.
*/
public static String baseUri = "http://apache.org/maven";
public static String xUri = "http://apache.org/maven/project";
@ -344,9 +350,9 @@ public class ProjectUri
public static class Filters
{
public static final String xUri = "http://apache.org/maven/project/build/filters#set";
public static String xUri = "http://apache.org/maven/project/build/filters#set";
public static final String filter = xUri + "/filter";
public static String filter = xUri + "/filter";
}
public static class PluginManagement