dhc - found this empty -- trying what I think is a reasonable impl.
| 932 | |
| 933 | // dhc - found this empty -- trying what I think is a reasonable impl. |
| 934 | void removeConsumer(ConsumerCallback consumer) |
| 935 | { |
| 936 | for(S32 i = 0; i < gConsumers.size(); i++) |
| 937 | { |
| 938 | if (gConsumers[i] == consumer) |
| 939 | { |
| 940 | // remove it from the list. |
| 941 | gConsumers.erase(i); |
| 942 | break; |
| 943 | } |
| 944 | } |
| 945 | } |
| 946 | |
| 947 | void stripColorChars(char* line) |
| 948 | { |
no test coverage detected