Details
-
Bug
-
Resolution: Fixed
-
Major
-
2.3
-
None
-
Trivial
-
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<--