Correct long line length

Original commit: elastic/x-pack-elasticsearch@e77f473b5b
This commit is contained in:
David Kyle 2017-07-25 16:59:42 +01:00
parent 74d06216c2
commit 14c88ca15f
1 changed files with 2 additions and 1 deletions

View File

@ -246,7 +246,8 @@ class AggregationToJsonProcessor {
Long timeStamp = (Long) copy.get(timeField);
if (timeStamp == null) {
throw new IllegalArgumentException(Messages.getMessage(Messages.DATAFEED_MISSING_MAX_AGGREGATION_FOR_TIME_FIELD, timeField));
throw new IllegalArgumentException(
Messages.getMessage(Messages.DATAFEED_MISSING_MAX_AGGREGATION_FOR_TIME_FIELD, timeField));
}
docsByBucketTimestamp.computeIfAbsent(timeStamp, (t) -> new ArrayList<>()).add(copy);