Skip to content

Commit 39a65fb

Browse files
committed
CSSTUDIO-2880 Remove "synchronized" from the definition of refresh(), since the function now always runs on the UI thread.
1 parent 83f0a37 commit 39a65fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/logbook/olog/ui/src/main/java/org/phoebus/logbook/olog/ui/LogEntryTableViewController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ public String getQuery() {
435435
return query.getValue().getQuery();
436436
}
437437

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

0 commit comments

Comments
 (0)