GLCaps.determineAvailableExtensions is not public anymore

This commit is contained in:
Elias Naur 2003-10-28 19:12:54 +00:00
parent 754f917730
commit 1ab5a0f887
1 changed files with 1 additions and 1 deletions

View File

@ -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);