minor fix in monitoring table update
This commit is contained in:
parent
e0298a2727
commit
78a0c562cc
1 changed files with 3 additions and 0 deletions
|
@ -284,8 +284,11 @@ public final class ClientConnectionTable implements FullPageMonitoringGUIUpdate
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void update(final MonitoringStatus monitoringStatus) {
|
public void update(final MonitoringStatus monitoringStatus) {
|
||||||
|
final Collection<ClientConnectionData> connectionData = monitoringStatus.getConnectionData();
|
||||||
|
|
||||||
final boolean needsSync = monitoringStatus.statusFilterChanged() ||
|
final boolean needsSync = monitoringStatus.statusFilterChanged() ||
|
||||||
this.forceUpdateAll ||
|
this.forceUpdateAll ||
|
||||||
|
connectionData.size() != this.table.getItemCount() ||
|
||||||
(this.tableMapping != null &&
|
(this.tableMapping != null &&
|
||||||
this.table != null &&
|
this.table != null &&
|
||||||
this.tableMapping.size() != this.table.getItemCount())
|
this.tableMapping.size() != this.table.getItemCount())
|
||||||
|
|
Loading…
Reference in a new issue