Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-04-01 21:19:59 +0000
committerThomas Watson2014-04-01 21:19:59 +0000
commit011467683f36c2161bee717d1c05bd07fc0d51fe (patch)
treea3f6e2416b7935985d6d94d2747d9aa967222f36
parent0dcf9baadc584fc33d6c280cf4cf03fea06e1966 (diff)
downloadrt.equinox.framework-011467683f36c2161bee717d1c05bd07fc0d51fe.tar.gz
rt.equinox.framework-011467683f36c2161bee717d1c05bd07fc0d51fe.tar.xz
rt.equinox.framework-011467683f36c2161bee717d1c05bd07fc0d51fe.zip
Bug 431727 - Overriding workspace location using -data does not work in RCP appI20140402-0100
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxConfiguration.java19
1 files changed, 2 insertions, 17 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxConfiguration.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxConfiguration.java
index 2fe2a0ebb..a196d2574 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxConfiguration.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxConfiguration.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2003, 2013 IBM Corporation and others.
+ * Copyright (c) 2003, 2014 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -197,22 +197,7 @@ public class EquinoxConfiguration implements EnvironmentInfo {
Object useSystemPropsValue = initialConfig.get(PROP_USE_SYSTEM_PROPERTIES);
boolean useSystemProps = useSystemPropsValue == null ? false : Boolean.parseBoolean(useSystemPropsValue.toString());
this.configuration = useSystemProps ? System.getProperties() : new Properties();
- if (useSystemProps) {
- // system properties override initial configuration
- for (Map.Entry<String, Object> configEntry : initialConfig.entrySet()) {
- if (!this.configuration.containsKey(configEntry.getKey())) {
- this.configuration.put(configEntry.getKey(), configEntry.getValue());
- } else {
- // override the initial config value
- Object systemValue = this.configuration.get(configEntry.getKey());
- if (systemValue != null) {
- configEntry.setValue(systemValue);
- }
- }
- }
- } else {
- this.configuration.putAll(initialConfig);
- }
+ this.configuration.putAll(initialConfig);
initializeProperties(this.configuration, aliasMapper);
for (String initialKey : populateInitConfig) {

Back to the top