static ResponseList<Friend> createFriendList(HttpResponse res, Configuration conf) throws FacebookException {
try {
if (conf.isJSONStoreEnabled()) {
DataObjectFactoryUtil.clearThreadLocalMap();
}
JSONObject json = res.asJSONObject();
JSONArray list = json.getJSONArray("data");
final int size = list.length();
ResponseList<Friend> friends = new ResponseListImpl<Friend>(size, json);
for (int i = 0; i < size; i++) {
JSONObject friendJSONObject = list.getJSONObject(i);
Friend friend = new FriendJSONImpl(friendJSONObject);
if (conf.isJSONStoreEnabled()) {
DataObjectFactoryUtil.registerJSONObject(friend, friendJSONObject);
}
friends.add(friend);