1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 15:15:25 +02:00

[cleanup] Fix error message due to refactoring

This commit is contained in:
Martin Oberhuber 2008-04-25 21:26:08 +00:00
parent 38b35acc9b
commit a91925a579

View file

@ -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() {