error msg typo fixed

This commit is contained in:
2014-05-30 01:58:51 +02:00
parent 00cc6d6df8
commit 84e9384bb9
+1 -1
View File
@@ -76,7 +76,7 @@ public class Reflect {
final int modif = fld.getModifiers();
if (!Modifier.isFinal(modif) || !Modifier.isStatic(modif)) {
throw new RuntimeException("The " + fieldName + " field of " + Support.str(objClass) + " field must be static and final!");
throw new RuntimeException("The " + fieldName + " field of " + Support.str(objClass) + " must be static and final!");
}
fld.setAccessible(true);