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 f98c69c commit 75aec4eCopy full SHA for 75aec4e
ui/org.eclipse.pde.bnd.ui/src/org/eclipse/pde/bnd/ui/wizards/AddFilesToRepositoryWizardPage.java
@@ -255,9 +255,9 @@ void doAdd() {
255
256
void doAddExternal() {
257
FileDialog dialog = new FileDialog(getShell(), SWT.OPEN | SWT.MULTI);
258
- dialog.setFilterExtensions(new String[] {
259
- "*.jar" //$NON-NLS-1$
260
- });
+ dialog.setFilterExtensions(
+ "*.jar" //$NON-NLS-1$
+ );
261
String res = dialog.open();
262
if (res != null) {
263
IPath filterPath = new Path(dialog.getFilterPath());
0 commit comments