Closedown
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user