From 1ab5a0f8879121fc2140c06e36878837ff042a6a Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Tue, 28 Oct 2003 19:12:54 +0000 Subject: [PATCH] GLCaps.determineAvailableExtensions is not public anymore --- src/java/org/lwjgl/opengl/GLCaps.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/lwjgl/opengl/GLCaps.java b/src/java/org/lwjgl/opengl/GLCaps.java index 016350ca..1645356a 100644 --- a/src/java/org/lwjgl/opengl/GLCaps.java +++ b/src/java/org/lwjgl/opengl/GLCaps.java @@ -188,7 +188,7 @@ public abstract class GLCaps { * Determine which extensions are available. Use this to initialize capability fields. * Can only be called _after_ a GLWindow or Pbuffer has been created. */ - public static void determineAvailableExtensions(HashSet exts) { + static void determineAvailableExtensions(HashSet exts) { // Grab all the public static booleans out of this class Field[] fields = GLCaps.class.getDeclaredFields(); HashMap map = new HashMap(fields.length);