| 118 | //------------------------------------------------------------------------------ |
| 119 | |
| 120 | void BanList::removeBan(S32 uniqueId, const char *) |
| 121 | { |
| 122 | Vector<BanInfo>::iterator i; |
| 123 | for(i = list.begin();i != list.end();i++) |
| 124 | { |
| 125 | if(uniqueId == i->uniqueId) |
| 126 | { |
| 127 | list.erase(i); |
| 128 | return; |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | //------------------------------------------------------------------------------ |
| 134 |
no test coverage detected