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