diff --git a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystem.java b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystem.java
index 6e8f6b8c977..ca1fa63e515 100644
--- a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystem.java
+++ b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystem.java
@@ -95,7 +95,6 @@ import org.eclipse.ui.progress.WorkbenchJob;
*
{@link #getObjectWithAbsoluteName(String)}
* {@link #internalResolveFilterString(IProgressMonitor monitor, String filterString)}
* {@link #internalResolveFilterString(IProgressMonitor monitor, Object parent, String filterString)}
- * {@link #internalRunCommand(IProgressMonitor monitor, String cmd, Object)}
* {@link #internalGetProperty(IProgressMonitor monitor, String key)}
* {@link #internalSetProperty(IProgressMonitor monitor, String key, String value)}
* {@link #internalGetProperties(IProgressMonitor monitor, String[] keys)}
@@ -108,7 +107,7 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
{
- protected static final String SUBSYSTEM_FILE_NAME = "subsystem";
+ protected static final String SUBSYSTEM_FILE_NAME = "subsystem"; //$NON-NLS-1$
//protected transient SubSystemConfiguration parentFactory = null;
protected static final int OPERATION_RESOLVE_ABSOLUTE = 0;
@@ -285,9 +284,9 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
}
catch (Exception exc)
{
- String msg = "Unexpected error renaming connection-specific filter pool " + getConnectionOwnedFilterPoolName(newName, getHostAliasName());
+ String msg = "Unexpected error renaming connection-specific filter pool " + getConnectionOwnedFilterPoolName(newName, getHostAliasName()); //$NON-NLS-1$
SystemBasePlugin.logError(msg, exc);
- System.err.println(msg + ": " + exc);
+ System.err.println(msg + ": " + exc); //$NON-NLS-1$
}
}
}
@@ -325,7 +324,7 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
}
catch (Exception exc)
{
- SystemBasePlugin.logError("Error renaming conection-private pool to: "+newName, exc);
+ SystemBasePlugin.logError("Error renaming conection-private pool to: "+newName, exc); //$NON-NLS-1$
}
}
}
@@ -358,7 +357,7 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
}
catch (Exception exc)
{
- SystemBasePlugin.logError("Error deleting conection-private pool for: "+getHostAliasName(), exc);
+ SystemBasePlugin.logError("Error deleting conection-private pool for: "+getHostAliasName(), exc); //$NON-NLS-1$
}
}
}
@@ -411,7 +410,7 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
*/
protected String getPreferencesKey(String profileName, String connectionName)
{
- String key = profileName + "." + connectionName + "." + getName();
+ String key = profileName + "." + connectionName + "." + getName(); //$NON-NLS-1$ //$NON-NLS-2$
//System.out.println("in SubSystemImpl.getPreferencesKey(): Subsystem key name: " + key);
return key;
}
@@ -627,7 +626,7 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
}
}
} catch (Exception exc) {
- SystemBasePlugin.logError("Error creating connection-private filter pool for connection: " + hostName, exc);
+ SystemBasePlugin.logError("Error creating connection-private filter pool for connection: " + hostName, exc); //$NON-NLS-1$
}
}
return pool;
@@ -645,7 +644,7 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
* since it names a team sharable resource. Not qualified by the profile
* name since that is implicit by being in a profile.
*/
- String name = "CN-" + connectionName; // $NON-NLS-1$
+ String name = "CN-" + connectionName; // $NON-NLS-1$ //$NON-NLS-1$
return name;
}
@@ -720,9 +719,9 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
{
for (int idx=0; !would && (idx