error msg typo fixed

master before-rogue-rewrite
Ondřej Hruška 10 years ago
parent 00cc6d6df8
commit 84e9384bb9
  1. 2
      src/mightypork/utils/Reflect.java

@ -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);

Loading…
Cancel
Save