Skip to content

Commit 75c0517

Browse files
committed
change
1 parent 22224df commit 75c0517

1 file changed

Lines changed: 3 additions & 15 deletions

File tree

src/ui/helper/historyui/HistoryUI.java

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,14 @@
1818

1919
public class HistoryUI extends JFrame
2020
{
21-
/**
22-
*
23-
*/
2421
private static final long serialVersionUID = 8141494344180865577L;
2522
private JTable resultsTable;
2623
private DefaultTableModel defaultTableModel;
2724
private HistoryUIInterface delegate;
2825

29-
JButton btnCancel, btnConfirm;
30-
JPanel panel;
31-
JScrollPane scrollPane;
26+
27+
private JPanel panel;
28+
private JScrollPane scrollPane;
3229

3330

3431
/*
@@ -38,9 +35,6 @@ public HistoryUI(String[] titles) {
3835

3936
// set the defaultTableModel to non editable by user clicking around
4037
defaultTableModel = new DefaultTableModel(0, 1) {
41-
/**
42-
*
43-
*/
4438
private static final long serialVersionUID = 1L;
4539

4640
@Override
@@ -49,9 +43,6 @@ public boolean isCellEditable(int row, int column) {
4943

5044
}
5145
};
52-
53-
54-
//defaultTableModel.addColumn("Data");
5546

5647
// big JPanel window
5748
panel = new JPanel();
@@ -103,9 +94,6 @@ public void setDelegate(HistoryUIInterface delegate) {
10394
private static class ForcedListSelectionModel
10495
extends
10596
DefaultListSelectionModel {
106-
/**
107-
*
108-
*/
10997
private static final long serialVersionUID = 1L;
11098

11199
public ForcedListSelectionModel() {

0 commit comments

Comments
 (0)