Changed CommentManagementAPIImpl

changed returning null into response ok.
feature/appm-store/pbac
nishadi 7 years ago
parent f82368990f
commit 2981a1537e

@ -73,7 +73,7 @@ public class CommentManagementAPIImpl implements CommentManagementAPI {
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(" Internal server error occurs") return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(" Internal server error occurs")
.build(); .build();
} }
return null; return Response.status(Response.Status.OK).build();
} }
@Override @Override

Loading…
Cancel
Save