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