aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/sun/opengl/impl/Debug.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-07-04 00:51:06 +0000
committerSven Gothel <[email protected]>2009-07-04 00:51:06 +0000
commit7dcb2b468ee7f3453fe69642e42cf4c2a21a0989 (patch)
tree3b3440a127d31cf21774c428fdd5a450f884aabc /src/jogl/classes/com/sun/opengl/impl/Debug.java
parent1e334b2c269fc7fbb59a16a52cf1d4bbee0aa6ac (diff)
Local property access package-private (no qualifiers)
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@2020 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/jogl/classes/com/sun/opengl/impl/Debug.java')
-rw-r--r--src/jogl/classes/com/sun/opengl/impl/Debug.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jogl/classes/com/sun/opengl/impl/Debug.java b/src/jogl/classes/com/sun/opengl/impl/Debug.java
index b6c6e6a00..7c5451706 100644
--- a/src/jogl/classes/com/sun/opengl/impl/Debug.java
+++ b/src/jogl/classes/com/sun/opengl/impl/Debug.java
@@ -61,7 +61,7 @@ public class Debug {
}
}
- protected static int getIntProperty(final String property, final boolean jnlpAlias) {
+ static int getIntProperty(final String property, final boolean jnlpAlias) {
return getIntProperty(property, jnlpAlias, localACC);
}
@@ -74,7 +74,7 @@ public class Debug {
return i;
}
- protected static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
+ static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
return getBooleanProperty(property, jnlpAlias, localACC);
}
@@ -83,7 +83,7 @@ public class Debug {
return b.booleanValue();
}
- protected static boolean isPropertyDefined(final String property, final boolean jnlpAlias) {
+ static boolean isPropertyDefined(final String property, final boolean jnlpAlias) {
return isPropertyDefined(property, jnlpAlias, localACC);
}
@@ -91,7 +91,7 @@ public class Debug {
return (Debug.getProperty(property, jnlpAlias, acc) != null) ? true : false;
}
- protected static String getProperty(final String property, final boolean jnlpAlias) {
+ static String getProperty(final String property, final boolean jnlpAlias) {
return getProperty(property, jnlpAlias, localACC);
}