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:
parent
38b35acc9b
commit
a91925a579
1 changed files with 6 additions and 6 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue