NEW - bug 271350: UDC not starting with workbench https://bugs.eclipse.org/bugs/show_bug.cgi?id=271350
diff --git a/plugins/org.eclipse.epp.usagedata.gathering/plugin.xml b/plugins/org.eclipse.epp.usagedata.gathering/plugin.xml index cd68cc4..e81ba3f 100644 --- a/plugins/org.eclipse.epp.usagedata.gathering/plugin.xml +++ b/plugins/org.eclipse.epp.usagedata.gathering/plugin.xml
@@ -5,7 +5,8 @@ <extension-point id="org.eclipse.epp.usagedata.listeners.event" name="Event Listener" schema="schema/org.eclipse.epp.usagedata.listeners.event.exsd"/> <extension point="org.eclipse.ui.startup"> - <startup></startup> + <startup + class="org.eclipse.epp.usagedata.internal.gathering.Startup"></startup> </extension> <extension point="org.eclipse.epp.usagedata.gathering.monitors">
diff --git a/plugins/org.eclipse.epp.usagedata.gathering/src/org/eclipse/epp/usagedata/internal/gathering/Startup.java b/plugins/org.eclipse.epp.usagedata.gathering/src/org/eclipse/epp/usagedata/internal/gathering/Startup.java new file mode 100644 index 0000000..e960de6 --- /dev/null +++ b/plugins/org.eclipse.epp.usagedata.gathering/src/org/eclipse/epp/usagedata/internal/gathering/Startup.java
@@ -0,0 +1,21 @@ +/******************************************************************************* + * Copyright (c) 2007 The Eclipse Foundation. + * 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: + * The Eclipse Foundation - initial API and implementation + *******************************************************************************/ +package org.eclipse.epp.usagedata.internal.gathering; + +import org.eclipse.ui.IStartup; + +public class Startup implements IStartup { + + public void earlyStartup() { + // Nothing to do. We just want the bundle to start. + } + +}