@@ -30,6 +30,6 @@ public interface NodeExecuter<KEYIN, VALUEIN, KEYOUT, VALUEOUT> {
* @throws Exception
*/
void execute(KEYIN key, VALUEIN value, final List<KeyValuePair<KEYOUT, VALUEOUT>> outList,
- ObjectHolder<Boolean> removable, TaskContext context) throws Exception;
+ final ObjectHolder<Boolean> removable, TaskContext context) throws Exception;
}