diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-02 22:52:04 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-02 22:52:04 +1000 |
commit | 015f77f4d2c108c01c4a0524ed28803683f31ca4 (patch) | |
tree | 4630921be62cec72b028ee9eb9302a0dc56c7d2e /src/Java/gtPlusPlus/core | |
parent | 8b9c000a837cf77ffd733519bbeccdd45a1364ef (diff) | |
download | GT5-Unofficial-015f77f4d2c108c01c4a0524ed28803683f31ca4.tar.gz GT5-Unofficial-015f77f4d2c108c01c4a0524ed28803683f31ca4.tar.bz2 GT5-Unofficial-015f77f4d2c108c01c4a0524ed28803683f31ca4.zip |
% Improved Creative Energy Buffer, Now it's voltage can change via screwdrivering it.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java b/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java index 8206f81c3d..d17c861b77 100644 --- a/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java +++ b/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java @@ -20,6 +20,7 @@ public class ReflectionUtils { try { Field k = clazz.getDeclaredField(fieldName); makeAccessible(k); + Logger.REFLECTION("Got Field from Class. "+fieldName+" did exist within "+clazz.getCanonicalName()+"."); return k; } catch (final NoSuchFieldException e) { final Class<?> superClass = clazz.getSuperclass(); |