Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortarendt2013-05-06 13:14:34 +0000
committertarendt2013-05-06 13:14:34 +0000
commit4c25c8f5dc2d6f56e50c4022c012c3c531ccb02a (patch)
treec3ccacca951b5d22dfc1e68176630f7d793299ff
parentb2f87d54e6214bad0d7a3b6f8f14793f1f49d43c (diff)
downloadorg.eclipse.emf.refactor.refactoring-4c25c8f5dc2d6f56e50c4022c012c3c531ccb02a.tar.gz
org.eclipse.emf.refactor.refactoring-4c25c8f5dc2d6f56e50c4022c012c3c531ccb02a.tar.xz
org.eclipse.emf.refactor.refactoring-4c25c8f5dc2d6f56e50c4022c012c3c531ccb02a.zip
bugs fixed
-rw-r--r--org.eclipse.emf.refactor.refactoring.papyrus/META-INF/MANIFEST.MF5
-rw-r--r--org.eclipse.emf.refactor.refactoring.papyrus/plugin.xml2
-rw-r--r--org.eclipse.emf.refactor.refactoring.papyrus/src/org/eclipse/emf/refactor/refactoring/papyrus/managers/PapyrusSelectionManager.java2
3 files changed, 6 insertions, 3 deletions
diff --git a/org.eclipse.emf.refactor.refactoring.papyrus/META-INF/MANIFEST.MF b/org.eclipse.emf.refactor.refactoring.papyrus/META-INF/MANIFEST.MF
index 18e8b27..96f0e5c 100644
--- a/org.eclipse.emf.refactor.refactoring.papyrus/META-INF/MANIFEST.MF
+++ b/org.eclipse.emf.refactor.refactoring.papyrus/META-INF/MANIFEST.MF
@@ -10,7 +10,10 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.emf.refactor.refactoring;bundle-version="0.7.0",
org.eclipse.emf.refactor.refactoring.generator;bundle-version="0.7.0",
org.eclipse.gmf.runtime.diagram.ui;bundle-version="1.6.0",
- org.eclipse.emf.facet.infra.browser.uicore;bundle-version="0.2.1"
+ org.eclipse.emf.facet.infra.browser.uicore;bundle-version="0.2.1",
+ org.eclipse.emf.refactor.refactoring.configuration;bundle-version="0.7.0",
+ org.eclipse.ltk.core.refactoring;bundle-version="3.6.0",
+ org.eclipse.ltk.ui.refactoring;bundle-version="3.7.0"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Import-Package: org.eclipse.ui
diff --git a/org.eclipse.emf.refactor.refactoring.papyrus/plugin.xml b/org.eclipse.emf.refactor.refactoring.papyrus/plugin.xml
index d879761..04dc999 100644
--- a/org.eclipse.emf.refactor.refactoring.papyrus/plugin.xml
+++ b/org.eclipse.emf.refactor.refactoring.papyrus/plugin.xml
@@ -47,5 +47,5 @@
commandId="org.eclipse.emf.refactor.refactoring.papyrus.generateNewRefactoringJavaCommand">
</handler>
</extension>
-
+
</plugin>
diff --git a/org.eclipse.emf.refactor.refactoring.papyrus/src/org/eclipse/emf/refactor/refactoring/papyrus/managers/PapyrusSelectionManager.java b/org.eclipse.emf.refactor.refactoring.papyrus/src/org/eclipse/emf/refactor/refactoring/papyrus/managers/PapyrusSelectionManager.java
index 7166a10..36e6e55 100644
--- a/org.eclipse.emf.refactor.refactoring.papyrus/src/org/eclipse/emf/refactor/refactoring/papyrus/managers/PapyrusSelectionManager.java
+++ b/org.eclipse.emf.refactor.refactoring.papyrus/src/org/eclipse/emf/refactor/refactoring/papyrus/managers/PapyrusSelectionManager.java
@@ -34,5 +34,5 @@ public class PapyrusSelectionManager extends SelectionManager {
}
return r;
}
-
+
}

Back to the top