|
|
@@ -123,7 +123,12 @@ public abstract class AExecutable implements IExecutable, Serializable {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Object apply(Object that, Object... arguments) {
|
|
|
+ public Object apply(Object[] arguments) {
|
|
|
+ return call(arguments);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Object apply(Object that, Object[] arguments) {
|
|
|
return call(ArrayUtils.prepend(arguments, that));
|
|
|
}
|
|
|
|