Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2014-04-08 11:13:17 +0000
committerEike Stepper2014-04-08 11:15:19 +0000
commit85a4c246fe88e8f0fa17475cf3869a9e9227df71 (patch)
tree5316873da9bbde9ee1904c7bd673d3c588797a8b
parenta48938d6476829a7b77c03d25ad4d34e9e35cf00 (diff)
downloadcdo-85a4c246fe88e8f0fa17475cf3869a9e9227df71.tar.gz
cdo-85a4c246fe88e8f0fa17475cf3869a9e9227df71.tar.xz
cdo-85a4c246fe88e8f0fa17475cf3869a9e9227df71.zip
[430277] Some bundles in CDO are being loaded upfront
https://bugs.eclipse.org/bugs/show_bug.cgi?id=430277
-rw-r--r--plugins/org.eclipse.emf.cdo.ui.team/plugin.xml7
-rw-r--r--plugins/org.eclipse.emf.cdo.ui.team/src/org/eclipse/emf/cdo/ui/internal/team/bundle/EarlyStartup.java24
2 files changed, 0 insertions, 31 deletions
diff --git a/plugins/org.eclipse.emf.cdo.ui.team/plugin.xml b/plugins/org.eclipse.emf.cdo.ui.team/plugin.xml
index 44acaa0216..31d037c824 100644
--- a/plugins/org.eclipse.emf.cdo.ui.team/plugin.xml
+++ b/plugins/org.eclipse.emf.cdo.ui.team/plugin.xml
@@ -14,13 +14,6 @@
<plugin>
<extension
- point="org.eclipse.ui.startup">
- <startup
- class="org.eclipse.emf.cdo.ui.internal.team.bundle.EarlyStartup">
- </startup>
- </extension>
-
- <extension
point="org.eclipse.core.runtime.adapters">
<factory
adaptableType="org.eclipse.emf.cdo.session.CDOSession"
diff --git a/plugins/org.eclipse.emf.cdo.ui.team/src/org/eclipse/emf/cdo/ui/internal/team/bundle/EarlyStartup.java b/plugins/org.eclipse.emf.cdo.ui.team/src/org/eclipse/emf/cdo/ui/internal/team/bundle/EarlyStartup.java
deleted file mode 100644
index bccd05bfad..0000000000
--- a/plugins/org.eclipse.emf.cdo.ui.team/src/org/eclipse/emf/cdo/ui/internal/team/bundle/EarlyStartup.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Copyright (c) 2012 Eike Stepper (Berlin, Germany) and others.
- * 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:
- * Eike Stepper - initial API and implementation
- * Victor Roldan Betancort - maintenance
- */
-package org.eclipse.emf.cdo.ui.internal.team.bundle;
-
-import org.eclipse.ui.IStartup;
-
-/**
- * @author Eike Stepper
- */
-public class EarlyStartup implements IStartup
-{
- public void earlyStartup()
- {
- }
-}

Back to the top