diff options
author | rschnekenbu | 2012-06-12 15:00:33 +0000 |
---|---|---|
committer | rschnekenbu | 2012-06-12 15:00:33 +0000 |
commit | 33c819336b1c0d91e2a0063b28c7d8288af9d3e2 (patch) | |
tree | ca9dfd441cf4dfb4d795af9314a91a6e4ce97747 /plugins/editor | |
parent | 72b87dec0f3db2b3c10fd46fc4c935e879d16213 (diff) | |
download | org.eclipse.papyrus-33c819336b1c0d91e2a0063b28c7d8288af9d3e2.tar.gz org.eclipse.papyrus-33c819336b1c0d91e2a0063b28c7d8288af9d3e2.tar.xz org.eclipse.papyrus-33c819336b1c0d91e2a0063b28c7d8288af9d3e2.zip |
344017: [General] Papyrus uses internal methods that don't exist in Eclipse 4.1
https://bugs.eclipse.org/bugs/show_bug.cgi?id=344017
- removing specific perspective listener on startup as this can only lead to bogus behavior. No action is made by this listener currently, so removing it should not be noticeable.
Diffstat (limited to 'plugins/editor')
-rw-r--r-- | plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/plugin.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/plugin.xml b/plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/plugin.xml index 6b32122e773..445c9ea1478 100644 --- a/plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/plugin.xml +++ b/plugins/editor/org.eclipse.papyrus.editor.perspectiveconfiguration/plugin.xml @@ -2,10 +2,11 @@ <?eclipse version="3.4"?>
<plugin>
<extension-point id="org.eclipse.papyrus.editor.perspectiveconfiguration" name="org.eclipse.papyrus.editor.perspectiveconfiguration" schema="schema/org.eclipse.papyrus.editor.perspectiveconfiguration.exsd"/>
+ <!--
<extension
point="org.eclipse.ui.startup">
<startup
class="org.eclipse.papyrus.editor.perspectiveconfiguration.PerspectiveConfigurator"></startup>
</extension>
-
+ -->
</plugin>
|