Closedown

This commit is contained in:
boccioli_m
2015-06-10 14:09:59 +02:00
parent 7497d51893
commit 22367a2911

View File

@@ -315,7 +315,7 @@ public class TestingList extends Panel {
//search for device name in table
for (int row = 0; row <= jTable1.getRowCount() - 1; row++) {
if (deviceName.equals(jTable1.getValueAt(row, COL_DEVICENAME)) &&
testName.equals(jTable1.getValueAt(rowD, COL_TESTNAME))) {
testName.equals(jTable1.getValueAt(row, COL_TESTNAME))) {
rowD = row;
break;
}