spelling: fireTableCellUpdated function arguments and super call...

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-10-22 08:45:16 -04:00
committed by Jindra Petřík
parent 5d5fb13317
commit c854a70f6a

View File

@@ -89,7 +89,7 @@ public class HexViewTableModel extends AbstractTableModel {
}
@Override
public void fireTableCellUpdated(int row, int columnd) {
super.fireTableCellUpdated(bytesInRow, bytesInRow);
public void fireTableCellUpdated(int row, int column) {
super.fireTableCellUpdated(row, column);
}
}