dhc - found this empty -- trying what I think is a reasonable impl.
| 880 | |
| 881 | // dhc - found this empty -- trying what I think is a reasonable impl. |
| 882 | void removeConsumer(ConsumerCallback consumer) |
| 883 | { |
| 884 | for(S32 i = 0; i < gConsumers.size(); i++) |
| 885 | { |
| 886 | if (gConsumers[i] == consumer) |
| 887 | { |
| 888 | // remove it from the list. |
| 889 | gConsumers.erase(i); |
| 890 | break; |
| 891 | } |
| 892 | } |
| 893 | } |
| 894 | |
| 895 | void stripColorChars(char* line) |
| 896 | { |
no test coverage detected