remove final keyword

This commit is contained in:
Simon Willnauer 2016-01-13 13:23:12 +01:00
parent aa464778b1
commit 47c6ba41d5
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ import java.util.stream.Collectors;
* A Processor that executes a list of other "processors". It executes a separate list of * A Processor that executes a list of other "processors". It executes a separate list of
* "onFailureProcessors" when any of the processors throw an {@link Exception}. * "onFailureProcessors" when any of the processors throw an {@link Exception}.
*/ */
public final class CompoundProcessor implements Processor { public class CompoundProcessor implements Processor {
static final String ON_FAILURE_MESSAGE_FIELD = "on_failure_message"; static final String ON_FAILURE_MESSAGE_FIELD = "on_failure_message";
static final String ON_FAILURE_PROCESSOR_FIELD = "on_failure_processor"; static final String ON_FAILURE_PROCESSOR_FIELD = "on_failure_processor";