diff --git a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/internal/subsystems/terminals/core/Activator.java b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/internal/subsystems/terminals/core/Activator.java index b5269b46645..accd1c633d6 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/internal/subsystems/terminals/core/Activator.java +++ b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/internal/subsystems/terminals/core/Activator.java @@ -1,9 +1,9 @@ /******************************************************************************** * Copyright (c) 2008 MontaVista Software, Inc. * 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 + * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Yu-Fen Kuo (MontaVista) - initial API and implementation ********************************************************************************/ @@ -34,7 +34,7 @@ public class Activator extends SystemBasePlugin { /* * (non-Javadoc) - * + * * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) */ public void start(BundleContext context) throws Exception { @@ -50,7 +50,7 @@ public class Activator extends SystemBasePlugin { .getBundle("org.eclipse.rse.terminals.ui"); if (bundle != null) { bundle - .loadClass("org.eclipse.rse.terminals.ui.TerminalServiceHelper"); + .loadClass("org.eclipse.rse.internal.terminals.ui.TerminalServiceHelper"); } } catch (ClassNotFoundException e) { @@ -63,7 +63,7 @@ public class Activator extends SystemBasePlugin { /* * (non-Javadoc) - * + * * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) */ public void stop(BundleContext context) throws Exception { @@ -73,7 +73,7 @@ public class Activator extends SystemBasePlugin { /** * Returns the shared instance - * + * * @return the shared instance */ public static Activator getDefault() {