mirror of https://github.com/apache/nifi.git
Fixed a couple of checkstyle violations
Signed-off-by: Matt Gilman <matt.c.gilman@gmail.com>
This commit is contained in:
parent
e7e15facc4
commit
2a3deed573
|
@ -50,7 +50,8 @@ public class ExecuteFlumeSink extends AbstractFlumeProcessor {
|
|||
|
||||
public static final PropertyDescriptor SINK_TYPE = new PropertyDescriptor.Builder()
|
||||
.name("Sink Type")
|
||||
.description("The component type name for the sink. For some sinks, this is a short, symbolic name (e.g. hdfs). For others, it's the fully-qualified name of the Sink class. See the Flume User Guide for details.")
|
||||
.description("The component type name for the sink. For some sinks, this is a short, symbolic name (e.g. hdfs)."
|
||||
+ " For others, it's the fully-qualified name of the Sink class. See the Flume User Guide for details.")
|
||||
.required(true)
|
||||
.addValidator(createSinkValidator())
|
||||
.build();
|
||||
|
|
|
@ -56,7 +56,8 @@ public class ExecuteFlumeSource extends AbstractFlumeProcessor {
|
|||
|
||||
public static final PropertyDescriptor SOURCE_TYPE = new PropertyDescriptor.Builder()
|
||||
.name("Source Type")
|
||||
.description("The component type name for the source. For some sources, this is a short, symbolic name (e.g. spooldir). For others, it's the fully-qualified name of the Source class. See the Flume User Guide for details.")
|
||||
.description("The component type name for the source. For some sources, this is a short, symbolic name"
|
||||
+ " (e.g. spooldir). For others, it's the fully-qualified name of the Source class. See the Flume User Guide for details.")
|
||||
.required(true)
|
||||
.addValidator(createSourceValidator())
|
||||
.build();
|
||||
|
|
Loading…
Reference in New Issue