From a10fb47542ab1253f6da74bf581a3a89cc843a6e Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Tue, 3 Apr 2007 17:00:55 +0000 Subject: [PATCH] [cleanup] Remove unnecessary implementations --- .../DeveloperSubSystemConfiguration.java | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/rse/examples/org.eclipse.rse.examples.tutorial/src/samples/subsystems/DeveloperSubSystemConfiguration.java b/rse/examples/org.eclipse.rse.examples.tutorial/src/samples/subsystems/DeveloperSubSystemConfiguration.java index f9038c9ef09..0f73ef14b77 100644 --- a/rse/examples/org.eclipse.rse.examples.tutorial/src/samples/subsystems/DeveloperSubSystemConfiguration.java +++ b/rse/examples/org.eclipse.rse.examples.tutorial/src/samples/subsystems/DeveloperSubSystemConfiguration.java @@ -30,7 +30,7 @@ import samples.RSESamplesPlugin; /** * This is our subsystem factory, which creates instances of our subsystems, - * and supplies the subsystem and filter actions to their popup menus. + * and supplies the subsystem and filter actions to their popup menus. */ public class DeveloperSubSystemConfiguration extends SubSystemConfiguration { @@ -101,19 +101,4 @@ public class DeveloperSubSystemConfiguration extends SubSystemConfiguration { return RSESamplesPlugin.getResourceString("property.type.devrfilter"); //$NON-NLS-1$ } - /* (non-Javadoc) - * @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#supportsServerLaunchProperties(org.eclipse.rse.model.IHost) - */ - public boolean supportsServerLaunchProperties(IHost host) { - return false; - } - - /** - * By default, this type of subsystem supports deferred queries. - * Override this method if your implementation does not. - */ - public boolean supportsDeferredQueries() - { - return true; - } }