Return copy of all details list so no changes can be made to original (removing adding items).

cusax-fix
Damian Minkov 19 years ago
parent 529c1ac41c
commit ebdbac1c96

@ -138,8 +138,11 @@ protected List getContactDetails(String uin)
result = responseRetriever.result;
retreivedDetails.put(uin, result);
}
return result;
List copyList = new Vector();
Collections.copy(copyList, result);
return copyList;
}
/**

Loading…
Cancel
Save