(ArrayList<Friend> friends)
| 95 | } |
| 96 | |
| 97 | public boolean addFriends(ArrayList<Friend> friends) { |
| 98 | try { |
| 99 | this.client.addFriends(friends); |
| 100 | } catch (Exception e) { |
| 101 | e.printStackTrace(); |
| 102 | } |
| 103 | |
| 104 | return true; |
| 105 | } |
| 106 | |
| 107 | public void deleteFriends(ArrayList<Friend> friends) { |
| 108 | try { |
no outgoing calls
no test coverage detected