(Cell<?, ?, ?> cell)
| 247 | private static final Function<Cell<?, ?, ?>, Cell<?, ?, ?>> TRANSPOSE_CELL = |
| 248 | new Function<Cell<?, ?, ?>, Cell<?, ?, ?>>() { |
| 249 | @Override |
| 250 | public Cell<?, ?, ?> apply(Cell<?, ?, ?> cell) { |
| 251 | return immutableCell(cell.getColumnKey(), cell.getRowKey(), cell.getValue()); |
| 252 | } |
| 253 | }; |
| 254 | |
| 255 | @SuppressWarnings("unchecked") |
nothing calls this directly
no test coverage detected