(Group deleteGroup)
| 2140 | } |
| 2141 | |
| 2142 | public void deleteGroup(Group deleteGroup) { |
| 2143 | synchronized (hContacts) { |
| 2144 | int j = hContacts.size(); |
| 2145 | for (int i = 0; i < j; i++) { |
| 2146 | Contact cr = (Contact) hContacts.elementAt(i); |
| 2147 | if (cr.group == deleteGroup) { |
| 2148 | deleteContact(cr); |
| 2149 | } |
| 2150 | } |
| 2151 | } |
| 2152 | } |
| 2153 | |
| 2154 | public void destroyView() { |
| 2155 | cmdMinimize(); |
no test coverage detected