Closedown

This commit is contained in:
boccioli_m
2018-03-20 10:16:27 +01:00
parent abaccd057a
commit 6613cb9396

View File

@@ -2356,10 +2356,12 @@ public class TestingList extends Panel {
&& model.getValueAt(row, COL.TESTNAME.ordinal()).toString().equals(testName)
&& model.getValueAt(row, COL.TESTPATH.ordinal()).toString().replace("\\", File.separator).equals(testPath));
if (bTestAlreadyInTable) {
System.out.println(" test already in table");
break;
}
}
if (!bTestAlreadyInTable) {
System.out.println(" test not in table: adding it...");
model.addRow(rowData);
}
} catch (Exception ex) {