Skip to content

Commit 1be729e

Browse files
committed
Make comment clearer
1 parent 83d0ec4 commit 1be729e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csv-validator-ui/src/main/scala/uk/gov/nationalarchives/csv/validator/ui/CsvValidatorUi.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ object CsvValidatorUi extends SimpleSwingApplication {
544544
}
545545

546546
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
547+
model.asInstanceOf[DefaultTableModel]removeRow(row - index) // when you delete a row, the index of next row to delete shifts down by 1
548548
}
549549

550550
def pathSubstitutions : List[(String, String)] = {

0 commit comments

Comments
 (0)