1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-16 20:55:44 +02:00

Bug 162489 - subsystem port number not being persisted

This commit is contained in:
David Dykstal 2006-11-02 21:38:03 +00:00
parent 0f47ce8874
commit 0420688abf

View file

@ -511,7 +511,8 @@ public class SystemViewSubSystemAdapter extends AbstractSystemViewAdapter
} }
int portInt = portInteger.intValue(); int portInt = portInteger.intValue();
ISubSystemConfiguration ssFactory = subsys.getSubSystemConfiguration(); ISubSystemConfiguration ssFactory = subsys.getSubSystemConfiguration();
ssFactory.updateSubSystem(subsys, false, subsys.getLocalUserId(), true, portInt); ssFactory.updateSubSystem(subsys, false, subsys.getLocalUserId(), true, portInt);
subsys.commit();
} }