Skip to content

Commit

Permalink
Update modules/charon-core/src/main/java/org/wso2/charon3/core/protoc…
Browse files Browse the repository at this point in the history
…ol/BulkRequestProcessor.java

Co-authored-by: Anuradha Karunarathna <anuradha199528@gmail.com>
  • Loading branch information
PasinduYeshan and AnuradhaSK authored Oct 23, 2023
1 parent 9dacee4 commit 44c1d91
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -310,10 +310,9 @@ private String extractIDFromV2Path(String path) throws BadRequestException {
String [] parts = path.split("[/]");
if (parts[3] != null) {
return parts[3];
} else {
throw new BadRequestException
("No resource Id is provided in path", ResponseCodeConstants.INVALID_VALUE);
}
throw new BadRequestException
("No resource Id is provided in path", ResponseCodeConstants.INVALID_VALUE);
}

private BulkResponseContent createBulkResponseContent(SCIMResponse response, String method,
Expand Down

0 comments on commit 44c1d91

Please sign in to comment.