| 732 | } |
| 733 | |
| 734 | void Dictionary::removeVariableNotify( const char *name, const Con::NotifyDelegate &callback ) |
| 735 | { |
| 736 | Entry *ent = lookup(StringTable->insert(name)); |
| 737 | if ( ent && ent->notify ) |
| 738 | ent->notify->remove( callback ); |
| 739 | } |
| 740 | |
| 741 | void Dictionary::validate() |
| 742 | { |
no test coverage detected