o Removed redundant/superfluous option

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@934372 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2010-04-15 11:34:55 +00:00
parent 9fa047dc30
commit effd92055c
2 changed files with 1 additions and 2 deletions

View File

@ -346,7 +346,6 @@ public class DefaultModelBuilder
Map<String, Object> options = new HashMap<String, Object>();
options.put( ModelProcessor.IS_STRICT, Boolean.valueOf( strict ) );
options.put( ModelProcessor.LOCATION, modelSource.getLocation() );
options.put( ModelProcessor.SOURCE, modelSource );
try

View File

@ -25,7 +25,7 @@ import org.apache.maven.model.locator.ModelLocator;
public interface ModelProcessor
extends ModelLocator, ModelReader
{
String LOCATION = "org.apache.maven.model.building.location";
String SOURCE = "org.apache.maven.model.building.source";
}