2
0
Эх сурвалжийг харах

Fixes a spelling mistake in the reflection allocator

Julien Gouesse 9 жил өмнө
parent
commit
d0f0cfe5e7

+ 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;
         	}