no message
This commit is contained in:
@@ -41,11 +41,14 @@ public class ProjectArraysForm extends DataSetControlForm<ProjectArray> {
|
||||
}
|
||||
@Override
|
||||
public boolean isObjectVisible(ProjectArray object) {
|
||||
if (object.isTemplFlag > 0) return true;
|
||||
return object.shortName.startsWith(object.filterName) &&
|
||||
object.location.toString().startsWith(object.filterLocation) &&
|
||||
object.locName.startsWith(object.filterLocationName) &&
|
||||
object.has_decl_place(object.filterFile) &&
|
||||
object.has_region(object.filterRegion);
|
||||
if (super.isObjectVisible(object)) {
|
||||
if (object.isTemplFlag > 0) return true;
|
||||
return object.shortName.startsWith(object.filterName) &&
|
||||
object.location.toString().startsWith(object.filterLocation) &&
|
||||
object.locName.startsWith(object.filterLocationName) &&
|
||||
object.has_decl_place(object.filterFile) &&
|
||||
object.has_region(object.filterRegion);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user