summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-03-18 09:33:17 +0100
committerSven Gothel <[email protected]>2012-03-18 09:33:17 +0100
commite54146c48bf46f41f973cdc2b5496567e921d5d7 (patch)
tree6aa3c17f25bac714faf9500033f53df6cfe424cd
parentbb177035f42c650f1f66ed172efc65c34b180c31 (diff)
Fix regression, adapt to GlueGen PropertyAccess changes, commit f4ac27e177f6deb444280d3b375e7d343e38bd08
-rw-r--r--src/java/jogamp/openal/Debug.java4
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;
}