()
| 586 | } |
| 587 | |
| 588 | @Override |
| 589 | public SortedMap<R, Map<C, V>> rowMap() { |
| 590 | Function<Map<C, V>, Map<C, V>> wrapper = unmodifiableWrapper(); |
| 591 | return Collections.unmodifiableSortedMap(Maps.transformValues(delegate().rowMap(), wrapper)); |
| 592 | } |
| 593 | |
| 594 | @Override |
| 595 | public SortedSet<R> rowKeySet() { |
nothing calls this directly
no test coverage detected