Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java')
-rw-r--r--server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java b/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java
index ded1cadbf..d0b6e5ee7 100644
--- a/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java
+++ b/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java
@@ -11,7 +11,6 @@
package org.eclipse.ecf.examples.remoteservices.common;
-
/**
*
*/
@@ -97,18 +96,4 @@ public interface IRemoteEnvironmentInfo {
*/
public Boolean inDevelopmentMode();
- /**
- * Returns the value for the specified property. Environment Properties are
- * backed by the Java system properties. When the option
- * <code>osgi.framework.useSystemProperties</code> is used then
- * the environment properties are specific for each instance of the framework.
- * <p>
- * This method should be used instead of the <code>System.getProperty(String)</code>
- * method to avoid the global nature of system properties.
- * </p>
- * @param key the property key
- * @return the value of the property, or null
- */
- public String getProperty(String key);
-
}

Back to the top