Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2017-05-24 07:00:18 +0000
committerQuentin Le Menez2017-05-24 07:42:05 +0000
commitfafd80bdfd789dd50c3a78dc21f4651c8e2419cf (patch)
treea4967fc422b73d5be6cfcd6b13db3c6aaee00f87 /plugins
parent89e7fcbf208a2edfc195ac89bfb5829b16749b3f (diff)
downloadorg.eclipse.papyrus-fafd80bdfd789dd50c3a78dc21f4651c8e2419cf.tar.gz
org.eclipse.papyrus-fafd80bdfd789dd50c3a78dc21f4651c8e2419cf.tar.xz
org.eclipse.papyrus-fafd80bdfd789dd50c3a78dc21f4651c8e2419cf.zip
[releng] [oxygen] Papyrus RC1 updates3.0.0_RC1
- Update Targets - Update Oomph references - Update guava dependency in oep.uml.profile.types.generator.ui Change-Id: I71c27afb2314ca7e7fd5768f4b9bca98b1859aac Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/META-INF/MANIFEST.MF1
-rw-r--r--plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/src/org/eclipse/papyrus/uml/profile/types/generator/ui/internal/wizards/GeneratorWizard.java2
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/META-INF/MANIFEST.MF b/plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/META-INF/MANIFEST.MF
index 844dd2cb8c4..e596fdfd48b 100644
--- a/plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/META-INF/MANIFEST.MF
+++ b/plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/META-INF/MANIFEST.MF
@@ -18,3 +18,4 @@ Bundle-Activator: org.eclipse.papyrus.uml.profile.types.generator.ui.internal.Ac
Bundle-Description: %pluginDescription
Bundle-SymbolicName: org.eclipse.papyrus.uml.profile.types.generator.ui;singleton:=true
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
+Import-Package: com.google.common.util.concurrent
diff --git a/plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/src/org/eclipse/papyrus/uml/profile/types/generator/ui/internal/wizards/GeneratorWizard.java b/plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/src/org/eclipse/papyrus/uml/profile/types/generator/ui/internal/wizards/GeneratorWizard.java
index 5a7eb4df5d7..3107ce54fd3 100644
--- a/plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/src/org/eclipse/papyrus/uml/profile/types/generator/ui/internal/wizards/GeneratorWizard.java
+++ b/plugins/uml/assistants/org.eclipse.papyrus.uml.profile.types.generator.ui/src/org/eclipse/papyrus/uml/profile/types/generator/ui/internal/wizards/GeneratorWizard.java
@@ -139,7 +139,7 @@ public class GeneratorWizard extends Wizard {
if (result.getSeverity() < IStatus.ERROR) {
monitor.subTask("Opening editor");
try {
- Futures.get(UIUtil.syncCall(getShell().getDisplay(), new Callable<Void>() {
+ Futures.getChecked(UIUtil.syncCall(getShell().getDisplay(), new Callable<Void>() {
@Override
public Void call() throws Exception {
IDE.openEditor(page, model.getOutputModelFile());

Back to the top