From 84e9384bb9fb67edaf3a6b9feb3bf2e25449b709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Fri, 30 May 2014 01:58:51 +0200 Subject: [PATCH] error msg typo fixed --- src/mightypork/utils/Reflect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mightypork/utils/Reflect.java b/src/mightypork/utils/Reflect.java index d49a07a..a16deca 100644 --- a/src/mightypork/utils/Reflect.java +++ b/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);