This commit is contained in:
gac-S_Changer
2018-08-14 14:10:09 +02:00
parent 1709e91d0d
commit 016f0508fe
15 changed files with 216 additions and 32 deletions

View File

@@ -39,7 +39,7 @@ public class PuckDetectionPanel extends DevicePanel {
table.getModel().setValueAt(state.mecSwitch, row, 2);
table.getModel().setValueAt(state.indSwitch, row, 3);
table.getModel().setValueAt(puck.getDetection() == null ? "" : puck.getDetection(), row, 4);
table.getModel().setValueAt(puck.getImageDetection() == null ? "" : puck.getImageDetection(), row, 5);
table.getModel().setValueAt(puck.getPuckType() == null ? "" : puck.getPuckType(), row, 5);
} catch (Exception ex) {
ex.printStackTrace();
table.getModel().setValueAt(false, row, 1);