Closed GoogleCodeExporter closed 9 years ago
correction:
if (myFriends.getData().size() > 0)
out.println("First item in my feed: " + myFeed.getData().get(0));
->
if (myFeed.getData().size() > 0)
out.println("First item in my feed: " + myFeed.getData().get(0));
:)
Original comment by sas...@gmail.com
on 11 Apr 2012 at 9:16
Thanks, this was me being lazy with the examples :) I'll fix.
Original comment by m...@xmog.com
on 19 Apr 2012 at 2:27
Fixed by
https://github.com/revetkn/restfb/commit/578b41d6d54783cfeaa93b4cf0fa7f338c5b6f6
7
Thank you!
Original comment by m...@xmog.com
on 2 Sep 2012 at 8:15
Original issue reported on code.google.com by
sas...@gmail.com
on 11 Apr 2012 at 9:06