mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Changed CommentManagementAPIImpl
changed returning null into response ok.
This commit is contained in:
parent
2981a1537e
commit
b5c28943ee
@ -73,7 +73,7 @@ public class CommentManagementAPIImpl implements CommentManagementAPI {
|
||||
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(" Internal server error occurs")
|
||||
.build();
|
||||
}
|
||||
return Response.status(Response.Status.OK).build();
|
||||
return Response.status(Response.Status.OK).entity(comments).build();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
Reference in New Issue
Block a user