diff --git a/rse/plugins/org.eclipse.rse.subsystems.processes.core/src/org/eclipse/rse/subsystems/processes/servicesubsystem/ProcessServiceSubSystem.java b/rse/plugins/org.eclipse.rse.subsystems.processes.core/src/org/eclipse/rse/subsystems/processes/servicesubsystem/ProcessServiceSubSystem.java index e0c18480425..17809ebb3d6 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.processes.core/src/org/eclipse/rse/subsystems/processes/servicesubsystem/ProcessServiceSubSystem.java +++ b/rse/plugins/org.eclipse.rse.subsystems.processes.core/src/org/eclipse/rse/subsystems/processes/servicesubsystem/ProcessServiceSubSystem.java @@ -15,6 +15,7 @@ * Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API * David Dykstal (IBM) - [197036] refactored switch configuration * David Dykstal (IBM) - [217556] remove service subsystem types + * David McKnight (IBM) - [220524] internalSwitchServiceSubSystemConfiguration -> internalSwitchSubSystemConfiguration ********************************************************************************/ package org.eclipse.rse.subsystems.processes.servicesubsystem; @@ -147,9 +148,9 @@ public class ProcessServiceSubSystem extends RemoteProcessSubSystemImpl implemen } /* (non-Javadoc) - * @see org.eclipse.rse.core.subsystems.SubSystem#internalSwitchServiceSubSystemConfiguration(org.eclipse.rse.core.subsystems.ISubSystemConfiguration) + * @see org.eclipse.rse.core.subsystems.SubSystem#internalSwitchSubSystemConfiguration(org.eclipse.rse.core.subsystems.ISubSystemConfiguration) */ - protected void internalSwitchServiceSubSystemConfiguration(ISubSystemConfiguration configuration) + protected void internalSwitchSubSystemConfiguration(ISubSystemConfiguration configuration) { IProcessServiceSubSystemConfiguration config = (IProcessServiceSubSystemConfiguration) configuration; IHost host = getHost(); diff --git a/rse/plugins/org.eclipse.rse.subsystems.shells.core/src/org/eclipse/rse/subsystems/shells/core/subsystems/servicesubsystem/ShellServiceSubSystem.java b/rse/plugins/org.eclipse.rse.subsystems.shells.core/src/org/eclipse/rse/subsystems/shells/core/subsystems/servicesubsystem/ShellServiceSubSystem.java index cc17be66055..5a5e485e11e 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.shells.core/src/org/eclipse/rse/subsystems/shells/core/subsystems/servicesubsystem/ShellServiceSubSystem.java +++ b/rse/plugins/org.eclipse.rse.subsystems.shells.core/src/org/eclipse/rse/subsystems/shells/core/subsystems/servicesubsystem/ShellServiceSubSystem.java @@ -17,6 +17,7 @@ * David McKnight (IBM) - [191599] Need to pass in shell encoding * David Dykstal (IBM) - [197036] refactored switch configuration * David Dykstal (IBM) - [217556] remove service subsystem types + * David McKnight (IBM) - [220524] internalSwitchServiceSubSystemConfiguration -> internalSwitchSubSystemConfiguration ********************************************************************************/ package org.eclipse.rse.subsystems.shells.core.subsystems.servicesubsystem; @@ -214,9 +215,9 @@ public final class ShellServiceSubSystem extends RemoteCmdSubSystem implements I } /* (non-Javadoc) - * @see org.eclipse.rse.core.subsystems.SubSystem#internalSwitchServiceSubSystemConfiguration(org.eclipse.rse.core.subsystems.ISubSystemConfiguration) + * @see org.eclipse.rse.core.subsystems.SubSystem#internalServiceSubSystemConfiguration(org.eclipse.rse.core.subsystems.ISubSystemConfiguration) */ - protected void internalSwitchServiceSubSystemConfiguration(ISubSystemConfiguration newConfiguration) { + protected void internalSwitchSubSystemConfiguration(ISubSystemConfiguration newConfiguration) { IShellServiceSubSystemConfiguration configuration = (IShellServiceSubSystemConfiguration) newConfiguration; IHost host = getHost(); setShellService(configuration.getShellService(host));