1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

[cleanup] Remove unnecessary implementations

This commit is contained in:
Martin Oberhuber 2007-04-03 17:00:55 +00:00
parent 1f2585a633
commit a10fb47542

View file

@ -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;
}
}