Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2012-09-20 13:12:01 +0000
committerThomas Watson2012-09-20 14:08:04 +0000
commit0a18aee6699903748b81fadeffc92b88aee0d444 (patch)
tree0108f925dfaa58876645d9778a0b83ba85d22f80 /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/namespaces
parentb5efc532bd6588376fd61371ab42e5ea44d7991c (diff)
downloadrt.equinox.framework-0a18aee6699903748b81fadeffc92b88aee0d444.tar.gz
rt.equinox.framework-0a18aee6699903748b81fadeffc92b88aee0d444.tar.xz
rt.equinox.framework-0a18aee6699903748b81fadeffc92b88aee0d444.zip
Use fuzzy compare ~= to match and do not lower case the attribute values for native code.
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/namespaces')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/namespaces/EquinoxNativeEnvironmentNamespace.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/namespaces/EquinoxNativeEnvironmentNamespace.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/namespaces/EquinoxNativeEnvironmentNamespace.java
index 3219b584b..25ff8c1cd 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/namespaces/EquinoxNativeEnvironmentNamespace.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/namespaces/EquinoxNativeEnvironmentNamespace.java
@@ -10,7 +10,6 @@
*******************************************************************************/
package org.eclipse.osgi.container.namespaces;
-import org.osgi.framework.Constants;
import org.osgi.resource.Namespace;
/**
@@ -69,11 +68,4 @@ public class EquinoxNativeEnvironmentNamespace extends Namespace {
* The value of this attribute must be of type {@code List<String>}.
*/
public static final String REQUIREMENT_NATIVE_PATHS_ATTRIBUTE = "native.paths"; //$NON-NLS-1$
-
- /**
- * Specifies the arbitrary selection filter for the native code requirement. This filter
- * is matched against the system properties.
- * @see Constants#SELECTION_FILTER_ATTRIBUTE
- */
- public static final String REQUIREMENT_SELECTION_FILTER_DIRECTIVE = "selection.filter"; //$NON-NLS-1$
}

Back to the top