Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Bull2012-05-15 16:10:48 +0000
committerIan Bull2012-05-15 16:10:48 +0000
commit94ce7f80072142e392b024a108525f7310c904a8 (patch)
tree3bd34acac92d938da23b1051d99314b6cea061ad /bundles/org.eclipse.equinox.p2.ui.sdk
parent8a16090df20423751452e26b96863507dfd20514 (diff)
downloadrt.equinox.p2-94ce7f80072142e392b024a108525f7310c904a8.tar.gz
rt.equinox.p2-94ce7f80072142e392b024a108525f7310c904a8.tar.xz
rt.equinox.p2-94ce7f80072142e392b024a108525f7310c904a8.zip
Revert "Bug 349628 - No update proposed when there are repository with errors"
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.ui.sdk')
-rw-r--r--bundles/org.eclipse.equinox.p2.ui.sdk/src/org/eclipse/equinox/internal/p2/ui/sdk/UpdateHandler.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui.sdk/src/org/eclipse/equinox/internal/p2/ui/sdk/UpdateHandler.java b/bundles/org.eclipse.equinox.p2.ui.sdk/src/org/eclipse/equinox/internal/p2/ui/sdk/UpdateHandler.java
index aaa3e1f01..f2ce43ad5 100644
--- a/bundles/org.eclipse.equinox.p2.ui.sdk/src/org/eclipse/equinox/internal/p2/ui/sdk/UpdateHandler.java
+++ b/bundles/org.eclipse.equinox.p2.ui.sdk/src/org/eclipse/equinox/internal/p2/ui/sdk/UpdateHandler.java
@@ -11,7 +11,6 @@
package org.eclipse.equinox.internal.p2.ui.sdk;
import org.eclipse.core.runtime.*;
-import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.equinox.p2.operations.RepositoryTracker;
import org.eclipse.equinox.p2.operations.UpdateOperation;
import org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob;
@@ -63,12 +62,6 @@ public class UpdateHandler extends PreloadingRepositoryHandler {
}
@Override
- protected void setLoadJobProperties(Job loadJob) {
- super.setLoadJobProperties(loadJob);
- loadJob.setProperty(LoadMetadataRepositoryJob.SUPPRESS_REPOSITORY_ERRORS, Boolean.toString(true));
- }
-
- @Override
protected String getProgressTaskName() {
return ProvSDKMessages.UpdateHandler_ProgressTaskName;
}

Back to the top