added missin return to Util.invokeMethodIfExists
This commit is contained in:
parent
33da8545f3
commit
9a3ae09fb4
|
@ -328,7 +328,7 @@ public class Util {
|
|||
for (Method method : methods) {
|
||||
if (method.getName().equals(methodName)) {
|
||||
try {
|
||||
method.invoke(o, args);
|
||||
return method.invoke(o, args);
|
||||
} catch (IllegalAccessException e) {
|
||||
return null;
|
||||
} catch (InvocationTargetException e) {
|
||||
|
|
Loading…
Reference in New Issue