Skip to content

Commit

Permalink
reformat messages
Browse files Browse the repository at this point in the history
  • Loading branch information
dprzybyl committed Oct 30, 2023
1 parent 4f0910d commit bf8c770
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ public static String newPasswordSet(String userId) {
return "New password for user " + userId + " was set";
}

public static String authorizableExists(String authorizableId, String type) {
return "Authorizable with id: " + authorizableId + " already exists, and is a " + type;
}

public static String addingGroupToItself(String groupId) {
return "You can not add group " + groupId + " to itself";
}

public static String authorizableExists(String authorizableId, String type) {
return "Authorizable with id: " + authorizableId + " already exists, and is a " + type;
}

public static String groupHasNoMembers(String groupId) {
return "Group with id: " + groupId + " has no members.";
}
Expand Down

0 comments on commit bf8c770

Please sign in to comment.