подсветка версий с ошибками в журнале
This commit is contained in:
@@ -100,9 +100,9 @@ public class TestDBTable extends iDBTable<Test> {
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public Test getTestByDescription(String description_in) {
|
||||
public Test getTestByDescription(int group_id_in, String description_in) {
|
||||
for (Test test : Data.values()) {
|
||||
if (test.description.equalsIgnoreCase(description_in))
|
||||
if ((test.group_id==group_id_in)&&(test.description.equalsIgnoreCase(description_in)))
|
||||
return test;
|
||||
}
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user