commit | 6871cf019cb4ad3a5e5c2b8d3d16fb9c37a8e35d | [log] [tgz] |
---|---|---|
author | shreyax <shreyax@google.com> | Mon Jul 02 09:16:18 2018 -0700 |
committer | Copybara-Service <copybara-piper@google.com> | Mon Jul 02 09:17:43 2018 -0700 |
tree | fe1eb78f9cf4871fb85f66b3f8832f4f43c11345 | |
parent | d3228b61f633cdc5b3f740b641a0836f1bd79abd [diff] [blame] |
Allow uniquifiers to throw QueryExceptions. RELNOTES: None. PiperOrigin-RevId: 202961077
diff --git a/src/main/java/com/google/devtools/build/lib/query2/PostAnalysisQueryEnvironment.java b/src/main/java/com/google/devtools/build/lib/query2/PostAnalysisQueryEnvironment.java index 956abf5..89aae59 100644 --- a/src/main/java/com/google/devtools/build/lib/query2/PostAnalysisQueryEnvironment.java +++ b/src/main/java/com/google/devtools/build/lib/query2/PostAnalysisQueryEnvironment.java
@@ -403,8 +403,7 @@ @Override public Uniquifier<T> createUniquifier() { - return new UniquifierImpl<>( - getConfiguredTargetKeyExtractor(), SkyQueryEnvironment.DEFAULT_THREAD_COUNT); + return new UniquifierImpl<>(getConfiguredTargetKeyExtractor()); } @Override