1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 10:46:02 +02:00

[refactoring] Remove the rseConfigDefaults extension point and replace the properties with system properties that can be specified through config.ini

This commit is contained in:
Kushal Munir 2006-09-13 14:06:52 +00:00
parent 8e58727598
commit 98f45d6697

View file

@ -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");