We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39dd4bd commit 5f71071Copy full SHA for 5f71071
core/src/test/java/cn/leancloud/AVUserFollowshipTest.java
@@ -382,7 +382,8 @@ public void onNext(AVUser avUser) {
382
@Override
383
public void done(Map avObjects, AVException avException) {
384
operationSucceed = (null != avObjects);
385
- System.out.println(JSON.toJSONString(avObjects));
+ System.out.println(JSON.toJSONString(avObjects.get("follower")));
386
+ System.out.println(JSON.toJSONString(avObjects.get("followee")));
387
if (null != avException) {
388
avException.printStackTrace();
389
}
0 commit comments