mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 17:45:24 +02:00
[150386] supplied a default implementation for supportsServerLaunchProperties
This commit is contained in:
parent
dc366d4233
commit
57d588d83d
1 changed files with 6 additions and 4 deletions
|
@ -450,7 +450,9 @@ public abstract class SubSystemConfiguration implements ISubSystemConfiguration
|
|||
* If you return true here, you may also want to override {@link #supportsServerLaunchType(ServerLaunchType)}.
|
||||
* <br> 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
|
||||
|
|
Loading…
Add table
Reference in a new issue