diff options
author | Sven Gothel <[email protected]> | 2012-03-13 20:12:40 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-03-13 20:12:40 +0100 |
commit | eedb4b530fb83fc59a26962bcf7847a1404092a0 (patch) | |
tree | 8dfc3f5590356398616bb87ab65cdf56837123cc /src/java/com/jogamp/common/util/PropertyAccess.java | |
parent | f4ac27e177f6deb444280d3b375e7d343e38bd08 (diff) |
PropertyAccess: Push down 'isPropertyDefined(final String property, final boolean jnlpAlias)' for trusted properties
The method shall be called by the respective Debug specialization, which registers the trusted property prefix.
Diffstat (limited to 'src/java/com/jogamp/common/util/PropertyAccess.java')
-rw-r--r-- | src/java/com/jogamp/common/util/PropertyAccess.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/java/com/jogamp/common/util/PropertyAccess.java b/src/java/com/jogamp/common/util/PropertyAccess.java index f0d49e0..92e8a3d 100644 --- a/src/java/com/jogamp/common/util/PropertyAccess.java +++ b/src/java/com/jogamp/common/util/PropertyAccess.java @@ -107,11 +107,6 @@ public class PropertyAccess { return (PropertyAccess.getProperty(property, jnlpAlias, acc) != null) ? true : false; } - /** @see #getProperty(String, boolean, AccessControlContext) */ - public static final boolean isPropertyDefined(final String property, final boolean jnlpAlias) { - return (PropertyAccess.getProperty(property, jnlpAlias, null) != null) ? true : false; - } - /** * Query the property with the name <code>propertyKey</code>. * <p> |