aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/jogl/classes/com/sun/opengl/impl/Debug.java8
-rw-r--r--src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java8
-rw-r--r--src/newt/classes/com/sun/javafx/newt/impl/Debug.java8
3 files changed, 12 insertions, 12 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);
}
diff --git a/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java b/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java
index 7b7785a7c..dd967c71a 100644
--- a/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java
+++ b/src/nativewindow/classes/com/sun/nativewindow/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);
}
diff --git a/src/newt/classes/com/sun/javafx/newt/impl/Debug.java b/src/newt/classes/com/sun/javafx/newt/impl/Debug.java
index ed8531295..202d9d5b3 100644
--- a/src/newt/classes/com/sun/javafx/newt/impl/Debug.java
+++ b/src/newt/classes/com/sun/javafx/newt/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);
}