From cbaa5cfd3a3182a47afd995309e788e2e5a34614 Mon Sep 17 00:00:00 2001 From: Nourreddine Date: Tue, 10 May 2022 18:13:45 +0800 Subject: [PATCH] Align code and comments for feed batch --- example/Example.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/Example.java b/example/Example.java index 128a91fd..678782cc 100644 --- a/example/Example.java +++ b/example/Example.java @@ -226,7 +226,7 @@ public static void main(String[] args) throws Exception { // Batch following many feeds // Let timeline:1 will follow user:1, user:2 and user:3 FollowRelation[] follows = new FollowRelation[] { new FollowRelation("timeline:1", "user:1"), - new FollowRelation("timeline:3", "user:2"), new FollowRelation("timeline:1", "user:3") }; + new FollowRelation("timeline:1", "user:2"), new FollowRelation("timeline:1", "user:3") }; client.batch().followMany(follows); // copy only the last 10 activities from every feed client.batch().followMany(10, follows);