PMD dogfooding

This commit is contained in:
Juan Martín Sotuyo Dodero
2018-04-15 12:53:06 -03:00
parent dd1a2910c1
commit 29aed16cb9

View File

@ -55,7 +55,8 @@ public class Attribute {
// this lazy loading reduces calls to Method.invoke() by about 90%
try {
return value = method.invoke(parent, EMPTY_OBJ_ARRAY);
value = method.invoke(parent, EMPTY_OBJ_ARRAY);
return value;
} catch (IllegalAccessException | InvocationTargetException iae) {
iae.printStackTrace();
}