| 666 | } |
| 667 | |
| 668 | void Dictionary::removeVariableNotify(const char *name, const Con::NotifyDelegate &callback) |
| 669 | { |
| 670 | Entry *ent = lookup(StringTable->insert(name)); |
| 671 | if (ent && ent->notify) |
| 672 | ent->notify->remove(callback); |
| 673 | } |
| 674 | |
| 675 | void Dictionary::validate() |
| 676 | { |
no test coverage detected