Browse Source

Fixes a spelling mistake in the reflection allocator

Julien Gouesse 9 years ago
parent
commit
d0f0cfe5e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jme3-core/src/main/java/com/jme3/util/ReflectionAllocator.java

+ 1 - 1
jme3-core/src/main/java/com/jme3/util/ReflectionAllocator.java

@@ -82,7 +82,7 @@ public final class ReflectionAllocator implements BufferAllocator {
             return null; // the direct buffer implementation was not found
         } catch (Throwable t) {
         	if (t.getClass().getName().equals("java.lang.reflect.InaccessibleObjectException")) {
-        		return null;// the class is in an exported module
+        		return null;// the class is in an unexported module
         	} else {
         		throw t;
         	}