Skip to content

Commit

Permalink
Resolve null check.
Browse files Browse the repository at this point in the history
  • Loading branch information
JeethJJ committed Oct 15, 2024
1 parent 1c2366d commit 8aeaa39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public Response getAllApplications(Integer limit, Integer offset, String filter,
String requiredAttributes, Boolean excludeSystemPortals) {

ApplicationListResponse listResponse = applicationManagementService.getAllApplications(limit, offset, filter,
sortOrder, sortBy, requiredAttributes, Boolean.parseBoolean(excludeSystemPortals.toString()));
sortOrder, sortBy, requiredAttributes, Boolean.parseBoolean(String.valueOf(excludeSystemPortals)));
return Response.ok().entity(listResponse).build();
}

Expand Down

0 comments on commit 8aeaa39

Please sign in to comment.