We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2ac4f commit d58a196Copy full SHA for d58a196
jabsrv/src/main/java/org/jabref/http/server/cayw/gui/SearchField.java
@@ -16,7 +16,7 @@ public class SearchField<T> extends TextField {
16
17
public SearchField(FilteredList<CAYWEntry<T>> filteredEntries, Function<String, List<T>> filter) {
18
PauseTransition pause = new PauseTransition(Duration.millis(DELAY_IN_MS));
19
- textProperty().addListener((observable, oldValue, newValue) -> {
+ textProperty().addListener((_, _, newValue) -> {
20
pause.setOnFinished(event -> {
21
Set<T> currentEntries = new HashSet<>(filter.apply(newValue));
22
filteredEntries.setPredicate(entry -> currentEntries.contains(entry.getValue()));
0 commit comments