spelling: fireTableCellUpdated function arguments and super call...

Signed-off-by: Josh Soref <[email protected]>
This commit is contained in:
Josh Soref
2024-10-29 16:55:43 +01:00
committed by Jindra Petřík
parent 5d5fb13317
commit c854a70f6a
@@ -89,7 +89,7 @@ public class HexViewTableModel extends AbstractTableModel {
} }
@Override @Override
public void fireTableCellUpdated(int row, int columnd) { public void fireTableCellUpdated(int row, int column) {
super.fireTableCellUpdated(bytesInRow, bytesInRow); super.fireTableCellUpdated(row, column);
} }
} }