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 18e228e commit 1ea5d30Copy full SHA for 1ea5d30
debug/org.eclipse.unittest.ui/src/org/eclipse/unittest/internal/ui/history/HistoryDialog.java
@@ -108,7 +108,7 @@ private void createButtons(Composite res) {
108
Button importButton = new Button(buttons, SWT.PUSH);
109
importButton.addSelectionListener(SelectionListener.widgetSelectedAdapter(e -> {
110
FileDialog fileDialog = new FileDialog(getShell());
111
- fileDialog.setFilterExtensions(new String[] { "*.xml" }); //$NON-NLS-1$
+ fileDialog.setFilterExtensions("*.xml"); //$NON-NLS-1$
112
fileDialog.setText(Messages.HistoryDialog_selectImport);
113
String path = fileDialog.open();
114
if (path == null) {
0 commit comments