1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 12:35:22 +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. * Copyright (c) 2008 MontaVista Software, Inc.
* This program and the accompanying materials are made available under the terms * 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 * available at http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* Yu-Fen Kuo (MontaVista) - initial API and implementation * Yu-Fen Kuo (MontaVista) - initial API and implementation
********************************************************************************/ ********************************************************************************/
@ -34,7 +34,7 @@ public class Activator extends SystemBasePlugin {
/* /*
* (non-Javadoc) * (non-Javadoc)
* *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/ */
public void start(BundleContext context) throws Exception { public void start(BundleContext context) throws Exception {
@ -50,7 +50,7 @@ public class Activator extends SystemBasePlugin {
.getBundle("org.eclipse.rse.terminals.ui"); .getBundle("org.eclipse.rse.terminals.ui");
if (bundle != null) { if (bundle != null) {
bundle bundle
.loadClass("org.eclipse.rse.terminals.ui.TerminalServiceHelper"); .loadClass("org.eclipse.rse.internal.terminals.ui.TerminalServiceHelper");
} }
} catch (ClassNotFoundException e) { } catch (ClassNotFoundException e) {
@ -63,7 +63,7 @@ public class Activator extends SystemBasePlugin {
/* /*
* (non-Javadoc) * (non-Javadoc)
* *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/ */
public void stop(BundleContext context) throws Exception { public void stop(BundleContext context) throws Exception {
@ -73,7 +73,7 @@ public class Activator extends SystemBasePlugin {
/** /**
* Returns the shared instance * Returns the shared instance
* *
* @return the shared instance * @return the shared instance
*/ */
public static Activator getDefault() { public static Activator getDefault() {