Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Bull2012-04-30 19:59:05 +0000
committerIan Bull2012-04-30 19:59:05 +0000
commitaca36ad707f94cd48296dba8d68ad1ca4a9ee956 (patch)
treefe65bc514c42e0108c119047fd1a54cd50e5f505 /bundles/org.eclipse.equinox.p2.artifact.repository
parentff1fafe365406ce46076fd1d423b8683146d1f50 (diff)
downloadrt.equinox.p2-aca36ad707f94cd48296dba8d68ad1ca4a9ee956.tar.gz
rt.equinox.p2-aca36ad707f94cd48296dba8d68ad1ca4a9ee956.tar.xz
rt.equinox.p2-aca36ad707f94cd48296dba8d68ad1ca4a9ee956.zip
Bug 378095 - Install new Software writes to stdout v20120430-1959
I accidently committed some debug output.
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.artifact.repository')
-rw-r--r--bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/MirrorRequest.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/MirrorRequest.java b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/MirrorRequest.java
index ab2683573..559416283 100644
--- a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/MirrorRequest.java
+++ b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/MirrorRequest.java
@@ -205,9 +205,6 @@ public class MirrorRequest extends ArtifactRequest {
int counter = 0;
do {
- if (counter > 0) {
- System.out.println("Retry: " + counter + " " + sourceDescriptor.getArtifactKey().getId());
- }
lastResult = transferSingle(destinationDescriptor, sourceDescriptor, monitor);
allResults.add(lastResult);
} while (lastResult.getSeverity() == IStatus.ERROR && lastResult.getCode() == IArtifactRepository.CODE_RETRY && counter++ < MAX_RETRY_REQUEST);

Back to the top