no message

This commit is contained in:
2024-10-14 15:19:13 +03:00
parent 8eef367bd4
commit 5e09fb44ea
634 changed files with 3751 additions and 3263 deletions

View File

@@ -10,8 +10,8 @@ public abstract class DataTable extends StyledTable implements DataControl {
@Override
public void SelectRowByPK(Object pk) {
for (int i = 0; i < getRowCount(); ++i) {
DBObject o = getRowObject(i);
if (o!=null) {
DBObject o = getRowObject(i);
if (o != null) {
if (o.getPK()
.equals(pk)) {
SelectRow(i);