Quellcode durchsuchen

Fixes a spelling mistake in the reflection allocator

Julien Gouesse vor 9 Jahren
Ursprung
Commit
d0f0cfe5e7
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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;
         	}