aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java
diff options
context:
space:
mode:
authorGravatar Janak Ramakrishnan <janakr@google.com>2015-05-14 19:38:12 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-05-15 09:44:58 +0000
commit29c5ab46fd9eae927b0734ac142ee9ae1c9c00a1 (patch)
tree35a079778e7d58a3ae996c44ff5dc8ac8067f713 /src/main/java/com/google/devtools/build/lib/skyframe/ContainingPackageLookupValue.java
parenta689f2900911039d2c10e6de7d41fbf1bdf31f44 (diff)
Allow globs to be used outside of the skyframe package.
-- MOS_MIGRATED_REVID=93647914
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 16516b5534..0383534474 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
@@ -29,7 +29,7 @@ public abstract class ContainingPackageLookupValue implements SkyValue {
public abstract boolean hasContainingPackage();
/** If there is a containing package, returns its name. */
- abstract PackageIdentifier getContainingPackageName();
+ public abstract PackageIdentifier getContainingPackageName();
/** If there is a containing package, returns its package root */
public abstract Path getContainingPackageRoot();