commit | 0b97b91ab4afb101fa2d54f1f7ca5d56b5ff026e | [log] [tgz] |
---|---|---|
author | Michajlo Matijkiw <michajlo@google.com> | Wed Oct 21 16:24:04 2015 +0000 |
committer | Kristina Chodorow <kchodorow@google.com> | Thu Oct 22 15:14:18 2015 +0000 |
tree | fe79d263c30c88d82e71abb5400caaf0d5f9677f | |
parent | 3428dc9e92a5422106ed1adf3c19304e62357c06 [diff] [blame] |
Narrow return type of ContainingPackageLookupValue.withContainingPackage -- MOS_MIGRATED_REVID=105969015
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 70bdf0d..b1c9129 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 @@ 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); }