Merge branch 'stable-2.12'
* stable-2.12: ProjectConfig: Use conditional-and (&&) instead of bitwise-and (&) Change-Id: Ifab48dba4ea0b835669965ebf1b83e8dcffdef00
This commit is contained in:
@@ -575,7 +575,7 @@ public class ProjectConfig extends VersionedMetaData implements ValidationError.
|
||||
Config rc, Map<String, GroupReference> groupsByName) {
|
||||
accessSections = new HashMap<>();
|
||||
for (String refName : rc.getSubsections(ACCESS)) {
|
||||
if (RefConfigSection.isValid(refName) & isValidRegex(refName)) {
|
||||
if (RefConfigSection.isValid(refName) && isValidRegex(refName)) {
|
||||
AccessSection as = getAccessSection(refName, true);
|
||||
|
||||
for (String varName : rc.getStringList(ACCESS, refName, KEY_GROUP_PERMISSIONS)) {
|
||||
|
Reference in New Issue
Block a user