Skip to content

Commit

Permalink
Fix formatting issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaura committed Apr 3, 2024
1 parent dbd790b commit 41d5fb4
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1475,10 +1475,11 @@ private UsersGetResponse filterUsersBySingleAttribute(ExpressionNode node, Map<S
* @param domainName Domain to run the filter
* @return User count
* @throws BadRequestException Exception occurred due to a bad request.
* @throws CharonException Error while filtering the users.
* @throws CharonException Error while filtering the users.
*/
private int getUserCountByAttribute(Node node, int offset, int limit, String sortBy,
String sortOrder, String domainName) throws BadRequestException, CharonException {
String sortOrder, String domainName)
throws BadRequestException, CharonException {

if (SCIMConstants.UserSchemaConstants.GROUP_URI.equals(((ExpressionNode) node).getAttributeValue())) {
return getUserCountByGroup(node, domainName);
Expand Down Expand Up @@ -1735,7 +1736,7 @@ private Set<org.wso2.carbon.user.core.common.User> filterUsers(Node node, int of
* @param node Expression or Operation node.
* @param domainName Domain name.
* @return User count for the filtered group.
* @throws CharonException Error while filtering the users.
* @throws CharonException Error while filtering the users.
* @throws BadRequestException Exception occurred due to a bad request.
*/
private int getUserCountByGroup(Node node, String domainName)
Expand Down Expand Up @@ -1766,7 +1767,7 @@ private int getUserCountByGroup(Node node, String domainName)
}

private int getUserCountForGroup(List<String> groupNames) throws
org.wso2.carbon.user.core.UserStoreException {
org.wso2.carbon.user.core.UserStoreException {

int count = 0;
if (groupNames != null) {
Expand Down

0 comments on commit 41d5fb4

Please sign in to comment.