aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Michajlo Matijkiw <michajlo@google.com>2015-07-21 15:38:54 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2015-07-21 15:13:39 -0400
commit043d36d902728e777df316800175475a3077865a (patch)
tree03413d970fdcc4cce5e023e0cdd551890b1b512b /src
parent2e7a5b47979b2679208a97a65df265be953eb595 (diff)
--
MOS_MIGRATED_REVID=98737473
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/GlobDescriptor.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/GlobDescriptor.java b/src/main/java/com/google/devtools/build/lib/skyframe/GlobDescriptor.java
index 5baeae8dfb..be06f57d1a 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/GlobDescriptor.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/GlobDescriptor.java
@@ -46,7 +46,7 @@ public final class GlobDescriptor implements Serializable {
* @param pattern a valid glob pattern
* @param excludeDirs true if directories should be excluded from results
*/
- GlobDescriptor(PackageIdentifier packageId, PathFragment subdir, String pattern,
+ public GlobDescriptor(PackageIdentifier packageId, PathFragment subdir, String pattern,
boolean excludeDirs) {
this.packageId = Preconditions.checkNotNull(packageId);
this.subdir = Preconditions.checkNotNull(subdir);
@@ -72,7 +72,7 @@ public final class GlobDescriptor implements Serializable {
/**
* Returns the subdirectory of the package under consideration.
*/
- PathFragment getSubdir() {
+ public PathFragment getSubdir() {
return subdir;
}
@@ -82,14 +82,14 @@ public final class GlobDescriptor implements Serializable {
* <p>As the glob evaluator traverses deeper into the file tree, components are added at the
* beginning of {@code subdir} and removed from the beginning of {@code pattern}.
*/
- String getPattern() {
+ public String getPattern() {
return pattern;
}
/**
* Returns true if directories should be excluded from results.
*/
- boolean excludeDirs() {
+ public boolean excludeDirs() {
return excludeDirs;
}