Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2020-07-27 10:01:59 +0000
committerLars Vogel2020-07-31 10:05:26 +0000
commitf8c56ca7efb4ad3a77ffbe8047c4234df0aa651e (patch)
tree1e7975ed32dc2c7a3bbc28664e2d0306be6fae33 /bundles/org.eclipse.equinox.p2.ui.importexport/src
parentf55bfc045dc1826fa6ca672779c5b27f1010b561 (diff)
downloadrt.equinox.p2-f8c56ca7efb4ad3a77ffbe8047c4234df0aa651e.tar.gz
rt.equinox.p2-f8c56ca7efb4ad3a77ffbe8047c4234df0aa651e.tar.xz
rt.equinox.p2-f8c56ca7efb4ad3a77ffbe8047c4234df0aa651e.zip
Done via JDT cleanup actions Change-Id: I5e9085d4f3bfa6cf6dbe06d1d339ccd0ead89a32 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.ui.importexport/src')
-rw-r--r--bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/internal/wizard/ImportWizard.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/internal/wizard/ImportWizard.java b/bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/internal/wizard/ImportWizard.java
index 676333bc9..075f603fa 100644
--- a/bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/internal/wizard/ImportWizard.java
+++ b/bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/internal/wizard/ImportWizard.java
@@ -126,7 +126,7 @@ public class ImportWizard extends InstallWizard implements IImportWizard {
computeRemediationOperation(operation, ui, monitor);
}
}
- Display.getDefault().asyncExec(() -> planChanged());
+ Display.getDefault().asyncExec(this::planChanged);
});
} catch (InterruptedException e) {
operation = new InstallOperation(new ProvisioningSession(AbstractPage.agent), new ArrayList<IInstallableUnit>()) {

Back to the top