Fix check style line length failure

Original commit: elastic/x-pack-elasticsearch@d37595db2b
This commit is contained in:
David Kyle 2017-04-05 09:00:16 +01:00
parent f8bb762a59
commit 7c45cb7ccf

View File

@ -13,7 +13,8 @@ import java.io.InputStream;
import java.util.function.BiConsumer; import java.util.function.BiConsumer;
/** /**
* Interface defining writers to a {@link org.elasticsearch.xpack.ml.job.process.autodetect.AutodetectProcess} * Interface defining writers to a
* {@link org.elasticsearch.xpack.ml.job.process.autodetect.AutodetectProcess}
*/ */
public interface DataToProcessWriter { public interface DataToProcessWriter {
@ -30,7 +31,8 @@ public interface DataToProcessWriter {
* <code>DataDescription</code>s timeField is missing from the CSV header * <code>DataDescription</code>s timeField is missing from the CSV header
* a <code>MissingFieldException</code> is thrown * a <code>MissingFieldException</code> is thrown
*/ */
void write(InputStream inputStream, XContentType xContentType, BiConsumer<DataCounts, Exception> handler) throws IOException; void write(InputStream inputStream, XContentType xContentType,
BiConsumer<DataCounts, Exception> handler) throws IOException;
/** /**
* Flush the outputstream * Flush the outputstream