Merge "Move {Ref,Change,Project}Control into permissions package"

This commit is contained in:
Patrick Hiesel
2018-01-24 09:23:35 +00:00
committed by Gerrit Code Review
19 changed files with 72 additions and 72 deletions

View File

@@ -83,7 +83,7 @@ public abstract class RefPatternMatcher {
}
}
static class ExpandParameters extends RefPatternMatcher {
public static class ExpandParameters extends RefPatternMatcher {
private final ParameterizedString template;
private final String prefix;
@@ -145,7 +145,7 @@ public abstract class RefPatternMatcher {
return ImmutableSet.of();
}
boolean matchPrefix(String ref) {
public boolean matchPrefix(String ref) {
return ref.startsWith(prefix);
}