diff --git a/jme3-core/src/main/java/com/jme3/util/ReflectionAllocator.java b/jme3-core/src/main/java/com/jme3/util/ReflectionAllocator.java index 276241e1a..6ddc5fb87 100644 --- a/jme3-core/src/main/java/com/jme3/util/ReflectionAllocator.java +++ b/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; }