ingest: make concrete processor impl final, like all other processor concrete impls.

This commit is contained in:
Martijn van Groningen 2016-04-01 10:56:26 +02:00
parent 4c4bbb3e45
commit 9ebc0c8f47
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ import java.util.Map;
* New field value will be an array containing all of the different extracted items.
* Throws exception if the field is null or a type other than string.
*/
public class SplitProcessor extends AbstractProcessor {
public final class SplitProcessor extends AbstractProcessor {
public static final String TYPE = "split";