From 4e69276d57de4a9042b927efa5a864411aedacb4 Mon Sep 17 00:00:00 2001 From: Justin Borromeo Date: Mon, 11 Feb 2019 12:09:54 -0800 Subject: [PATCH] Removed unused import to satisfy PMD check --- .../druid/query/scan/ScanResultValueTimestampComparator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/processing/src/main/java/org/apache/druid/query/scan/ScanResultValueTimestampComparator.java b/processing/src/main/java/org/apache/druid/query/scan/ScanResultValueTimestampComparator.java index 289a1cddf80..c2edea61312 100644 --- a/processing/src/main/java/org/apache/druid/query/scan/ScanResultValueTimestampComparator.java +++ b/processing/src/main/java/org/apache/druid/query/scan/ScanResultValueTimestampComparator.java @@ -21,7 +21,6 @@ package org.apache.druid.query.scan; import com.google.common.primitives.Longs; import org.apache.druid.java.util.common.UOE; -import org.apache.druid.query.QueryRunner; import org.apache.druid.segment.column.ColumnHolder; import java.util.Comparator; @@ -31,7 +30,7 @@ import java.util.Map; /** * This comparator class supports comparisons of ScanResultValues based on the timestamp of their first event. Since * only the first event is looked at, this Comparator is especially useful for unbatched ScanResultValues (such as in - * {@link ScanQueryQueryToolChest#mergeResults(QueryRunner )}. The comparator takes a scanQuery as + * {@link ScanQueryQueryToolChest#mergeResults(org.apache.druid.query.QueryRunner )}. The comparator takes a scanQuery as * a parameter so that it knows the result format (list or compactedList) of Object ScanResultValue#events. It uses * this result format to perform a bunch of type casts on the object to get the timestamp then compares the timestamps. */