PR: MNG-644

remove unused method

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293348 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-10-03 13:37:12 +00:00
parent f328ad0f63
commit 7aa60e32d4
2 changed files with 0 additions and 24 deletions

View File

@ -23,21 +23,9 @@ public interface ArtifactFactory
{ {
String ROLE = ArtifactFactory.class.getName(); String ROLE = ArtifactFactory.class.getName();
/**
* @deprecated
*/
Artifact createArtifact( String groupId, String artifactId, String version, String scope, String type,
String inheritedScope );
// TODO: deprecate and chase down (probably used for copying only) // TODO: deprecate and chase down (probably used for copying only)
Artifact createArtifact( String groupId, String artifactId, String version, String scope, String type ); Artifact createArtifact( String groupId, String artifactId, String version, String scope, String type );
/**
* @deprecated
*/
Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String scope, String type,
String classifier );
Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type,
String classifier ); String classifier );

View File

@ -37,12 +37,6 @@ public class DefaultArtifactFactory
return createArtifact( groupId, artifactId, version, scope, type, null, null ); return createArtifact( groupId, artifactId, version, scope, type, null, null );
} }
public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String scope,
String type, String classifier )
{
return createArtifact( groupId, artifactId, version, scope, type, classifier, null );
}
public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type,
String classifier ) String classifier )
{ {
@ -97,12 +91,6 @@ public class DefaultArtifactFactory
return createArtifact( groupId, artifactId, versionRange, "jar", null, Artifact.SCOPE_RUNTIME, null ); return createArtifact( groupId, artifactId, versionRange, "jar", null, Artifact.SCOPE_RUNTIME, null );
} }
public Artifact createArtifact( String groupId, String artifactId, String version, String scope, String type,
String inheritedScope )
{
return createArtifact( groupId, artifactId, version, scope, type, null, inheritedScope );
}
private Artifact createArtifact( String groupId, String artifactId, String version, String scope, String type, private Artifact createArtifact( String groupId, String artifactId, String version, String scope, String type,
String classifier, String inheritedScope ) String classifier, String inheritedScope )
{ {