Removes the row at the index row from the current selection. @param row the row to remove
(int row)
| 2642 | * @param row the row to remove |
| 2643 | */ |
| 2644 | public void removeSelectionRow(int row) { |
| 2645 | int[] rows = { row }; |
| 2646 | |
| 2647 | removeSelectionRows(rows); |
| 2648 | } |
| 2649 | |
| 2650 | /** |
| 2651 | * Removes the rows that are selected at each of the specified |
nothing calls this directly
no test coverage detected