improved ref

This commit is contained in:
Arasple 2020-01-22 11:05:28 +08:00
parent f6da4781e7
commit 03bf00a43d

View File

@ -70,7 +70,7 @@ public class SimpleReflection {
} }
Field field = fields.get(fieldName); Field field = fields.get(fieldName);
if (value == null) { if (value == null) {
TLogger.getGlobalLogger().error("Field Not Found: " + nmsClass.getName()); return;
} }
try { try {
field.set(instance, value); field.set(instance, value);
@ -86,7 +86,7 @@ public class SimpleReflection {
} }
Field field = fields.get(fieldName); Field field = fields.get(fieldName);
if (field == null) { if (field == null) {
TLogger.getGlobalLogger().error("Field Not Found: " + nmsClass.getName()); return null;
} }
try { try {
return field.get(instance); return field.get(instance);
@ -103,7 +103,7 @@ public class SimpleReflection {
} }
Field field = fields.get(fieldName); Field field = fields.get(fieldName);
if (field == null) { if (field == null) {
TLogger.getGlobalLogger().error("Field Not Found: " + nmsClass.getName()); return null;
} }
try { try {
return (T) field.get(instance); return (T) field.get(instance);
@ -139,6 +139,6 @@ public class SimpleReflection {
} catch (Throwable t) { } catch (Throwable t) {
t.printStackTrace(); t.printStackTrace();
} }
return mapType[1] == null ? null : mapType ; return mapType[1] == null ? null : mapType;
} }
} }