Skip to content

Commit

Permalink
Issue #5909 Update after review
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Bartel <janb@webtide.com>
  • Loading branch information
janbartel committed Feb 2, 2021
1 parent cc4b6ec commit 2c412ac
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ public void combine(RoleInfo other)
else if (other._checked)
{
setChecked(true);
if (other._isAnyAuth)
setAnyAuth(true);
if (other._isAnyRole)
setAnyRole(true);
else if (other._isAnyAuth)
setAnyAuth(true);
else if (!_isAnyRole)
_roles.addAll(other._roles);

_roles.addAll(other._roles);
}
setUserDataConstraint(other._userDataConstraint);
}
Expand Down

0 comments on commit 2c412ac

Please sign in to comment.