From 0420688abf5788d7f9481e53581d476a8a876a30 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Thu, 2 Nov 2006 21:38:03 +0000 Subject: [PATCH] Bug 162489 - subsystem port number not being persisted --- .../UI/org/eclipse/rse/ui/view/SystemViewSubSystemAdapter.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/SystemViewSubSystemAdapter.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/SystemViewSubSystemAdapter.java index af4140726c4..658061f4308 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/SystemViewSubSystemAdapter.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/SystemViewSubSystemAdapter.java @@ -511,7 +511,8 @@ public class SystemViewSubSystemAdapter extends AbstractSystemViewAdapter } int portInt = portInteger.intValue(); ISubSystemConfiguration ssFactory = subsys.getSubSystemConfiguration(); - ssFactory.updateSubSystem(subsys, false, subsys.getLocalUserId(), true, portInt); + ssFactory.updateSubSystem(subsys, false, subsys.getLocalUserId(), true, portInt); + subsys.commit(); }