remove final keyword
This commit is contained in:
parent
aa464778b1
commit
47c6ba41d5
|
@ -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";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue