| 2080 | } |
| 2081 | |
| 2082 | void Delete(int mon_index) |
| 2083 | { |
| 2084 | if (index >= mon_index && index >= 0) |
| 2085 | { |
| 2086 | if (index == mon_index) |
| 2087 | deleted = true; // Callers who care about this will reset it after each iteration. |
| 2088 | index--; // So index+1 is the next item. |
| 2089 | } |
| 2090 | count--; |
| 2091 | } |
| 2092 | |
| 2093 | void Dispose() |
| 2094 | { |
nothing calls this directly
no outgoing calls
no test coverage detected