diff --git a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystemConfiguration.java b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystemConfiguration.java index 5bf752e4feb..298b18d275a 100644 --- a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystemConfiguration.java +++ b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystemConfiguration.java @@ -443,14 +443,16 @@ public abstract class SubSystemConfiguration implements ISubSystemConfiguration } /** * Tell us if this subsystem factory supports server launch properties, which allow the user - * to configure how the server-side code for these subsystems are started. There is a Server - * Launch Setting property page, with a pluggable composite, where users can configure these - * properties. + * to configure how the server-side code for these subsystems are started. There is a Server + * Launch Setting property page, with a pluggable composite, where users can configure these + * properties. *

* If you return true here, you may also want to override {@link #supportsServerLaunchType(ServerLaunchType)}. *
By default we return false here. This is overridden in UniversalFileSubSystemConfiguration though. */ - public abstract boolean supportsServerLaunchProperties(IHost host); + public boolean supportsServerLaunchProperties(IHost host) { + return false; + } /** * If {@link #supportsServerLaunchProperties(IHost)} returns true, this method may be called by