aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java
diff options
context:
space:
mode:
authorGravatar janakr <janakr@google.com>2017-09-22 14:47:55 -0400
committerGravatar John Cater <jcater@google.com>2017-09-25 09:38:26 -0400
commit6acf6f00ab1b4dd8805b962f20f2897fc431e878 (patch)
tree877b8201b007eede845ea580c1e7c5c6fda5b47a /src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java
parent3c6c45fe9653b53288f99c68fc6b9d28da5a48ba (diff)
Remove PrecomputedValue for BlazeDirectories. All consumers have the value injected directly, which makes sense, because it's immutable over the lifetime of the server.
Step 3. PiperOrigin-RevId: 169717587
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java b/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java
index 7a743cd13b..51642f370c 100644
--- a/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java
+++ b/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java
@@ -146,7 +146,6 @@ public abstract class PackageLookupFunctionTest extends FoundationTestCase {
PrecomputedValue.PATH_PACKAGE_LOCATOR.set(differencer, pkgLocator.get());
PrecomputedValue.BLACKLISTED_PACKAGE_PREFIXES_FILE.set(
differencer, PathFragment.EMPTY_FRAGMENT);
- PrecomputedValue.BLAZE_DIRECTORIES.set(differencer, directories);
RepositoryDelegatorFunction.REPOSITORY_OVERRIDES.set(
differencer, ImmutableMap.<RepositoryName, PathFragment>of());
}