don't continually try to resolve from a remote repository when it doesn't exist there

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@219854 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-07-20 08:10:42 +00:00
parent e1c8ffb251
commit 399e51761a
1 changed files with 9 additions and 8 deletions

View File

@ -105,6 +105,8 @@ public abstract class AbstractVersionTransformation
VersionArtifactMetadata remoteMetadata;
checkedUpdates = true;
try
{
remoteMetadata = retrieveFromRemoteRepository( artifact, remoteRepository, localMetadata );
@ -124,7 +126,6 @@ public abstract class AbstractVersionTransformation
localMetadata = remoteMetadata;
}
checkedUpdates = true;
}
}