aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java
diff options
context:
space:
mode:
authorGravatar Michajlo Matijkiw <michajlo@google.com>2015-10-21 16:24:04 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2015-10-22 15:14:18 +0000
commit0b97b91ab4afb101fa2d54f1f7ca5d56b5ff026e (patch)
treefe79d263c30c88d82e71abb5400caaf0d5f9677f /src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java
parent3428dc9e92a5422106ed1adf3c19304e62357c06 (diff)
Narrow return type of ContainingPackageLookupValue.withContainingPackage
-- MOS_MIGRATED_REVID=105969015
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java b/src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java
index 70bdf0d07d..b1c9129fcd 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java
@@ -42,7 +42,7 @@ public abstract class ContainingPackageLookupValue implements SkyValue {
return new SkyKey(SkyFunctions.CONTAINING_PACKAGE_LOOKUP, id);
}
- static ContainingPackageLookupValue withContainingPackage(PackageIdentifier pkgId, Path root) {
+ public static ContainingPackage withContainingPackage(PackageIdentifier pkgId, Path root) {
return new ContainingPackage(pkgId, root);
}