We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d0ec4 commit 1be729eCopy full SHA for 1be729e
csv-validator-ui/src/main/scala/uk/gov/nationalarchives/csv/validator/ui/CsvValidatorUi.scala
@@ -544,7 +544,7 @@ object CsvValidatorUi extends SimpleSwingApplication {
544
}
545
546
def removeSelectedRows() : Unit = peer.getSelectedRows.zipWithIndex.foreach { case (row, index) =>
547
- model.asInstanceOf[DefaultTableModel]removeRow(row - index) // when you delete a row, the index of row to delete next shifts down by 1
+ model.asInstanceOf[DefaultTableModel]removeRow(row - index) // when you delete a row, the index of next row to delete shifts down by 1
548
549
550
def pathSubstitutions : List[(String, String)] = {
0 commit comments