Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.3
-
Component/s: {Unused} APIs
-
Labels:None
-
Difficulty:Trivial
-
Similar issues:
Description
The code of the method getComment() is probably wrong:
--8<--
Object object = invokeRpc("removePage", this.token, commentId);
return new Comment((Map) object);
--8<--
It should probably read
--8<--
Object object = invokeRpc("getComment", this.token, commentId);
return new Comment((Map) object);
--8<--