visibility, final, unneeded initial value

This commit is contained in:
rusefi 2022-11-09 00:39:50 -05:00 committed by Dale Schultz
parent df1a4b5c75
commit 60f78f8c0b
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ public class TableFrame extends JInternalFrame implements InternalFrameListener,
private static final ResourceBundle rb = new ResourceUtil().getBundle(
TableFrame.class.getName());
private TableView tableView;
private TableMenuBar tableMenuBar = null;
private final TableMenuBar tableMenuBar;
public TableFrame(String title, TableView tableView) {
super(title, true, true);

View File

@ -25,7 +25,7 @@ import com.romraider.maps.Table;
public class TableTreeNode extends DefaultMutableTreeNode {
Table table;
private final Table table;
private static final long serialVersionUID = 2824050968863990871L;
private String toolTip;