| 113 | } |
| 114 | |
| 115 | const char *NetStringTable::lookupString(U32 id) |
| 116 | { |
| 117 | if(table[id].refCount == 0 && table[id].scriptRefCount == 0) |
| 118 | return NULL; |
| 119 | return table[id].string; |
| 120 | } |
| 121 | |
| 122 | void NetStringTable::removeString(U32 id, bool script) |
| 123 | { |
no outgoing calls
no test coverage detected