From 98f45d66978668d21a76507d0258d3f071d1529e Mon Sep 17 00:00:00 2001 From: Kushal Munir < kmunir@ca.ibm.com> Date: Wed, 13 Sep 2006 14:06:52 +0000 Subject: [PATCH] [refactoring] Remove the rseConfigDefaults extension point and replace the properties with system properties that can be specified through config.ini --- .../org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java index 42cdb56f711..9127cf31596 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java @@ -163,13 +163,13 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi dontShowLocalConnection = showNewConn.equals("false"); } - enabledSystemTypes = System.getProperty("enableSystemTypes"); + enabledSystemTypes = System.getProperty("rse.enableSystemTypes"); if ((enabledSystemTypes != null) && (enabledSystemTypes.length() == 0)) { enabledSystemTypes = null; } - String showProfileInitially = System.getProperty("showProfilePage"); + String showProfileInitially = System.getProperty("rse.showProfilePage"); if (showProfileInitially != null) { dontShowProfilePageInitially = showProfileInitially.equals("false");