1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[175142] checks during persistence and registration of the service

This commit is contained in:
David McKnight 2007-02-22 22:16:55 +00:00
parent 80c5b1abfd
commit bc609fe6c6
2 changed files with 5 additions and 1 deletions

View file

@ -24,7 +24,6 @@ import org.eclipse.rse.subsystems.shells.core.subsystems.servicesubsystem.IShell
public class DelegatingShellProcessConnectorService extends AbstractDelegatingConnectorService
{
private IConnectorService _realService;
private ISubSystem _subSystem;
public DelegatingShellProcessConnectorService(IHost host)
{
super(host);

View file

@ -2561,6 +2561,11 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
_connectorService.registerSubSystem(this);
setDirty(true);
}
else
{
// register the subsystem
_connectorService.registerSubSystem(this);
}
}