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

[413725] - Fix more refactoring problems

This commit is contained in:
Greg Watson 2013-07-25 14:13:23 -04:00
parent 4530efafb3
commit ae0b0bf807
2 changed files with 2 additions and 17 deletions

View file

@ -7,27 +7,12 @@
point="org.eclipse.remote.core.remoteServices">
<remoteServices
class="org.eclipse.internal.remote.core.services.local.LocalServicesFactory"
id="org.eclipse.ptp.remote.LocalServices"
id="org.eclipse.remote.LocalServices"
name="Local"
newConnections="false"
scheme="file">
</remoteServices>
</extension>
<extension
point="org.eclipse.core.variables.valueVariables">
<variable
description="payload"
initialValue="&quot;&quot;"
name="payload"
readOnly="false">
</variable>
<variable
description="payload_args"
initialValue="&quot;&quot;"
name="payload_args"
readOnly="false">
</variable>
</extension>
<extension
point="org.eclipse.core.runtime.adapters">
<factory

View file

@ -23,7 +23,7 @@ import org.eclipse.remote.core.IRemoteServices;
import org.eclipse.remote.core.IRemoteServicesDescriptor;
public class LocalServices implements IRemoteServices {
public static final String LocalServicesId = "org.eclipse.ptp.remote.LocalServices"; //$NON-NLS-1$
public static final String LocalServicesId = "org.eclipse.remote.LocalServices"; //$NON-NLS-1$
private IRemoteFileManager fFileMgr = null;
private final IRemoteConnectionManager fConnMgr = new LocalConnectionManager(this);