refactoring

This commit is contained in:
rusefillc 2021-12-16 19:12:39 -05:00
parent 8e8ab90465
commit 09c6fe83d2
1 changed files with 2 additions and 3 deletions

View File

@ -29,9 +29,8 @@ public enum LiveDocsRegistry {
for (LiveDocHolder holder : liveDocs) {
boolean visible = holder.isVisible();
if (visible) {
for (live_data_e context : holder.getActions().getActions().keySet()) {
refresh(binaryProtocol, holder, context);
}
live_data_e context = holder.getId();
refresh(binaryProtocol, holder, context);
}
}
}