diff options
author | Camille Letavernier | 2015-12-09 12:45:02 +0000 |
---|---|---|
committer | Camille Letavernier | 2015-12-09 12:45:02 +0000 |
commit | f3ee390b167858af90ef203028bf26c4b121941c (patch) | |
tree | a3977f015884a4f241a167d671478a5c9a987f00 /plugins/facet | |
parent | ed1a7e9b9fd1b85b120546f16d75711c55244330 (diff) | |
download | org.eclipse.papyrus-f3ee390b167858af90ef203028bf26c4b121941c.tar.gz org.eclipse.papyrus-f3ee390b167858af90ef203028bf26c4b121941c.tar.xz org.eclipse.papyrus-f3ee390b167858af90ef203028bf26c4b121941c.zip |
484001: [User Experience] Investigate the 5 remaining Papyrus bundles on
early startup
https://bugs.eclipse.org/bugs/show_bug.cgi?id=484001
- Remove (empty) ui.startup extension for Custom and Facet SDKs
Change-Id: Ida047bf4f661ce6868347ea1479442cbf15b6d60
Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
Diffstat (limited to 'plugins/facet')
4 files changed, 1 insertions, 57 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/plugin.xml b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/plugin.xml index 9f55afabaa6..c16677d88d7 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/plugin.xml +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/plugin.xml @@ -199,10 +199,5 @@ </command>
</menu>
</menuContribution>
- </extension>
- <extension
- point="org.eclipse.ui.startup">
- <startup
- class="org.eclipse.papyrus.emf.facet.custom.sdk.ui.internal.Startup"></startup>
- </extension>
+ </extension> </plugin>
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/src/org/eclipse/papyrus/emf/facet/custom/sdk/ui/internal/Startup.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/src/org/eclipse/papyrus/emf/facet/custom/sdk/ui/internal/Startup.java deleted file mode 100644 index fd40413b527..00000000000 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/src/org/eclipse/papyrus/emf/facet/custom/sdk/ui/internal/Startup.java +++ /dev/null @@ -1,23 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2012 Mia-Software. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors - *******************************************************************************/ -package org.eclipse.papyrus.emf.facet.custom.sdk.ui.internal; - -import org.eclipse.ui.IStartup; - - -public class Startup implements IStartup { - - public void earlyStartup() { - // TODO Auto-generated method stub - - } - -} diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/plugin.xml b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/plugin.xml index cff58e6e921..7cbfeb488fe 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/plugin.xml +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/plugin.xml @@ -194,10 +194,4 @@ name="%command.name.10"> </command> </extension> - <extension - point="org.eclipse.ui.startup"> - <startup - class="org.eclipse.papyrus.emf.facet.efacet.sdk.ui.internal.Startup"> - </startup> - </extension> </plugin> diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/internal/Startup.java b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/internal/Startup.java deleted file mode 100644 index 11ddf4b4903..00000000000 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/internal/Startup.java +++ /dev/null @@ -1,22 +0,0 @@ -/**
- * Copyright (c) 2012 Mia-Software.
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
- */
-package org.eclipse.papyrus.emf.facet.efacet.sdk.ui.internal;
-
-import org.eclipse.ui.IStartup;
-
-public class Startup implements IStartup {
-
- public void earlyStartup() {
- // Nothing.
- }
-
-}
|