(ListKey<T> key)
| 636 | } |
| 637 | |
| 638 | public final <T> List<T> removeListFor(ListKey<T> key) |
| 639 | { |
| 640 | List<T> out = listChar == null ? null : listChar.removeListFor(key); |
| 641 | if (out != null && listChar.isEmpty()) |
| 642 | { |
| 643 | listChar = null; |
| 644 | } |
| 645 | return out; |
| 646 | } |
| 647 | |
| 648 | public final <T> boolean removeFromListFor(ListKey<T> key, T element) |
| 649 | { |
no test coverage detected