From 47c6ba41d505ecff472dc48eeb559a24a9be0f14 Mon Sep 17 00:00:00 2001 From: Simon Willnauer Date: Wed, 13 Jan 2016 13:23:12 +0100 Subject: [PATCH] remove final keyword --- .../java/org/elasticsearch/ingest/core/CompoundProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/elasticsearch/ingest/core/CompoundProcessor.java b/core/src/main/java/org/elasticsearch/ingest/core/CompoundProcessor.java index b412fb5d6e2..f25e13637c4 100644 --- a/core/src/main/java/org/elasticsearch/ingest/core/CompoundProcessor.java +++ b/core/src/main/java/org/elasticsearch/ingest/core/CompoundProcessor.java @@ -30,7 +30,7 @@ import java.util.stream.Collectors; * 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}. */ -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_PROCESSOR_FIELD = "on_failure_processor";