Skip to content

Commit

Permalink
CSSTUDIO-2880 Remove "synchronized" from the definition of refresh(),…
Browse files Browse the repository at this point in the history
… since the function now always runs on the UI thread.
  • Loading branch information
abrahamwolk committed Dec 18, 2024
1 parent 83f0a37 commit 39a65fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ public String getQuery() {
return query.getValue().getQuery();
}

private synchronized void refresh() {
private void refresh() {
Runnable refreshRunnable = () -> {
if (this.searchResult != null) {
List<TableViewListItem> selectedLogEntries = new ArrayList<>(tableView.getSelectionModel().getSelectedItems());
Expand Down

0 comments on commit 39a65fb

Please sign in to comment.