Skip to content

Commit

Permalink
removed serial tag for Java8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
thsa committed Oct 19, 2024
1 parent d95fdc0 commit 1ccbd2c
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.io.Serial;
import java.util.Vector;

public class JTableWithRowNumbers extends JTable implements TableModelListener {
protected static Cursor sResizeCursor,sDefaultCursor;
@Serial

private static final long serialVersionUID = 0x20060906;

private RowNumberPanel mRowNumberPanel;
Expand Down Expand Up @@ -187,7 +186,6 @@ public void setSelectionModel(ListSelectionModel selectionModel) {
// is considered important enough on this screen to re-enforce it with a visual.

class RowNumberPanel extends JPanel implements ListSelectionListener,MouseListener,MouseMotionListener {
@Serial
private static final long serialVersionUID = 0x20060906;

private static final int cResizeTolerance = 2;
Expand Down

0 comments on commit 1ccbd2c

Please sign in to comment.