mirror of https://github.com/apache/maven.git
o remove debug output
git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@768725 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3d0338e0ea
commit
04760f2e69
|
@ -369,8 +369,6 @@ public class DefaultWagonManager
|
|||
ArtifactRepositoryPolicy policy = artifact.isSnapshot() ? repository.getSnapshots() : repository.getReleases();
|
||||
|
||||
boolean updateCheckIsRequired = updateCheckManager.isUpdateRequired( artifact, repository );
|
||||
|
||||
System.out.println( "update check:" + updateCheckIsRequired );
|
||||
|
||||
if ( !policy.isEnabled() )
|
||||
{
|
||||
|
@ -385,8 +383,6 @@ public class DefaultWagonManager
|
|||
// 2. If the updateInterval has been exceeded since the last check for this artifact on this repository, then check.
|
||||
else if ( artifact.isSnapshot() && ( force || updateCheckIsRequired ) )
|
||||
{
|
||||
System.out.println( "!!!!!!!!!!!!!!!!!!!!!");
|
||||
|
||||
logger.debug( "Trying repository " + repository.getId() );
|
||||
|
||||
try
|
||||
|
@ -476,8 +472,6 @@ public class DefaultWagonManager
|
|||
throws TransferFailedException, ResourceDoesNotExistException
|
||||
{
|
||||
String protocol = repository.getProtocol();
|
||||
|
||||
System.out.println( wagons );
|
||||
|
||||
Wagon wagon;
|
||||
|
||||
|
|
Loading…
Reference in New Issue