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 54028a5 commit 9eaede6Copy full SHA for 9eaede6
bundles/org.eclipse.text.quicksearch/src/org/eclipse/text/quicksearch/internal/ui/QuickSearchDialog.java
@@ -426,7 +426,11 @@ protected void restoreDialog(IDialogSettings settings) {
426
}
427
428
// Retrieve the last locations where the user searched (works across restarts)
429
- filterHistory.addAll(List.of(settings.getArray(FILTER_HISTORY)));
+ String[] array = settings.getArray(FILTER_HISTORY);
430
+ if (array != null) {
431
+ filterHistory.addAll(List.of(array));
432
+ }
433
+
434
if (!filterHistory.isEmpty()) {
435
String filter = filterHistory.getFirst();
436
0 commit comments