Repository: incubator-pirk Updated Branches: refs/heads/master e98d39c34 -> aec1736ee
Fixing bug introduced during this commit with Eclipse organize imports - wrong Consumer class imported in Query Project: http://git-wip-us.apache.org/repos/asf/incubator-pirk/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-pirk/commit/aec1736e Tree: http://git-wip-us.apache.org/repos/asf/incubator-pirk/tree/aec1736e Diff: http://git-wip-us.apache.org/repos/asf/incubator-pirk/diff/aec1736e Branch: refs/heads/master Commit: aec1736ee3b350d8e73c20c81aed37861f6de3f0 Parents: e98d39c Author: eawilliams <[email protected]> Authored: Tue Aug 23 13:02:19 2016 -0400 Committer: eawilliams <[email protected]> Committed: Tue Aug 23 13:02:19 2016 -0400 ---------------------------------------------------------------------- src/main/java/org/apache/pirk/query/wideskies/Query.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/aec1736e/src/main/java/org/apache/pirk/query/wideskies/Query.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/pirk/query/wideskies/Query.java b/src/main/java/org/apache/pirk/query/wideskies/Query.java index 67917e2..f43fe47 100644 --- a/src/main/java/org/apache/pirk/query/wideskies/Query.java +++ b/src/main/java/org/apache/pirk/query/wideskies/Query.java @@ -26,7 +26,7 @@ import java.util.SortedMap; import java.util.TreeMap; import java.util.concurrent.ConcurrentHashMap; -import org.apache.parquet.format.event.Consumers.Consumer; +import java.util.function.Consumer; import org.apache.pirk.encryption.ModPowAbstraction; import org.apache.pirk.serialization.Storable; import org.slf4j.Logger;
