Skip to content

Commit

Permalink
Merge pull request #5761 from icklesteve/Cbus-Event-Table
Browse files Browse the repository at this point in the history
MERG CBUS EVTable Fixes
  • Loading branch information
bobjacobsen committed Sep 7, 2018
2 parents d922083 + 2dedb02 commit 4d42d0d
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -85,7 +85,6 @@ public class CbusEventTableDataModel extends javax.swing.table.AbstractTableMode
private int _defaultfeedbackdelay = 5000;

final JFileChooser fileChooser = new JFileChooser(FileUtil.getUserFilesPath());
private Timer eventTimer;
private ActionListener eventFeedbackListener;

CanSystemConnectionMemo memo;
Expand Down Expand Up @@ -225,7 +224,7 @@ public String getColumnName(int col) { // not in any order
}

// order needs to match column list right at top of class
protected static String[] columnToolTips = {
protected String[] columnToolTips = {
Bundle.getMessage("EventColTip"),
Bundle.getMessage("NodeColTip"),
Bundle.getMessage("NameColTip"),
Expand Down Expand Up @@ -325,7 +324,7 @@ public static int getPreferredWidth(int col) {
* </p>
* @param col int col number
*/
public static int getColumnWidth(int col) {
public int getColumnWidth(int col) {
switch (col) {
case CANID_COLUMN:
return 5;
Expand Down

0 comments on commit 4d42d0d

Please sign in to comment.