From d0f0cfe5e739be8088d9a048315d98e732abb95c Mon Sep 17 00:00:00 2001 From: Julien Gouesse Date: Sun, 7 Aug 2016 15:00:07 +0200 Subject: [PATCH] Fixes a spelling mistake in the reflection allocator --- jme3-core/src/main/java/com/jme3/util/ReflectionAllocator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }