diff options
author | Sven Gothel <[email protected]> | 2012-03-18 09:33:17 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-03-18 09:33:17 +0100 |
commit | e54146c48bf46f41f973cdc2b5496567e921d5d7 (patch) | |
tree | 6aa3c17f25bac714faf9500033f53df6cfe424cd /src | |
parent | bb177035f42c650f1f66ed172efc65c34b180c31 (diff) |
Fix regression, adapt to GlueGen PropertyAccess changes, commit f4ac27e177f6deb444280d3b375e7d343e38bd08
Diffstat (limited to 'src')
-rw-r--r-- | src/java/jogamp/openal/Debug.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/java/jogamp/openal/Debug.java b/src/java/jogamp/openal/Debug.java index e157f00..36d2ecd 100644 --- a/src/java/jogamp/openal/Debug.java +++ b/src/java/jogamp/openal/Debug.java @@ -55,6 +55,10 @@ public class Debug extends PropertyAccess { debugAll = isPropertyDefined("joal.debug", true); } + public static final boolean isPropertyDefined(final String property, final boolean jnlpAlias) { + return PropertyAccess.isPropertyDefined(property, jnlpAlias, null); + } + public static boolean verbose() { return verbose; } |