From a91925a5796622db13fc5a3410d74189d0bda59e Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Fri, 25 Apr 2008 21:26:08 +0000 Subject: [PATCH] [cleanup] Fix error message due to refactoring --- .../subsystems/terminals/core/Activator.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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() {