Skip to content

Commit

Permalink
Merge branch 'fence-integration-release/0003' into Test-Open-Access-L…
Browse files Browse the repository at this point in the history
…ogin-Code
  • Loading branch information
Gcolon021 authored Oct 17, 2023
2 parents 2fc4cf3 + 18e1e4d commit 60d6d42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public List<User> listUnmatchedByConnectionId(Connection connection) {
* @return
*/
public User findOrCreate(User inputUser) {
User user;
User user = null;
String subject = inputUser.getSubject();
try {
user = findBySubject(subject);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ private User createUserFromFENCEProfile(JsonNode node) {
* @param roleDescription Description of the Role
* @return boolean Whether the Role was successfully added to the User or not
*/
private boolean upsertRole(User u, String roleName, String roleDescription) {
public boolean upsertRole(User u, String roleName, String roleDescription) {
boolean status = false;
logger.debug("upsertRole() starting for user subject:"+u.getSubject());

Expand Down

0 comments on commit 60d6d42

Please sign in to comment.