| 228 | } |
| 229 | |
| 230 | AdminCache::~AdminCache() |
| 231 | { |
| 232 | m_destroying = true; |
| 233 | DumpAdminCache(AdminCache_Overrides, false); |
| 234 | DumpAdminCache(AdminCache_Groups, false); |
| 235 | |
| 236 | List<AuthMethod *>::iterator iter; |
| 237 | for (iter=m_AuthMethods.begin(); |
| 238 | iter!=m_AuthMethods.end(); |
| 239 | iter++) |
| 240 | { |
| 241 | delete *iter; |
| 242 | } |
| 243 | |
| 244 | delete m_pStrings; |
| 245 | } |
| 246 | |
| 247 | void AdminCache::OnSourceModStartup(bool late) |
| 248 | { |
nothing calls this directly
no test coverage detected