Closedown

This commit is contained in:
boccioli_m
2015-06-10 11:01:55 +02:00
parent f732c26beb
commit aaf1b818c5

View File

@@ -335,10 +335,10 @@ public class TestingList extends Panel {
}
//find the test currently in progress
public String[] getTestInProgress() {
String[] dsTestProperties = null;
String[] dsTestProperties = null;
//search for device name in table
for (int row = 0; row <= jTable1.getRowCount() - 1; row++) {
if ("Running".equals(jTable1.getValueAt(row, COL_STATUS))) {
if (jTable1.getValueAt(row, COL_STATUS).toString().equals("Running")) {
dsTestProperties[0] = jTable1.getValueAt(row, COL_DEVICENAME).toString();
dsTestProperties[1] = jTable1.getValueAt(row, COL_TESTNAME).toString();
break;