Skip to content

Commit 3f7b156

Browse files
Perform clean code of ui/org.eclipse.pde.bnd.ui
1 parent 98f11cb commit 3f7b156

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ui/org.eclipse.pde.bnd.ui/src/org/eclipse/pde/bnd/ui/wizards/AddFilesToRepositoryWizardPage.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,8 @@ void doAdd() {
255255

256256
void doAddExternal() {
257257
FileDialog dialog = new FileDialog(getShell(), SWT.OPEN | SWT.MULTI);
258-
dialog.setFilterExtensions(new String[] {
259-
"*.jar" //$NON-NLS-1$
260-
});
258+
dialog.setFilterExtensions(
259+
"*.jar");
261260
String res = dialog.open();
262261
if (res != null) {
263262
IPath filterPath = new Path(dialog.getFilterPath());

0 commit comments

Comments
 (0)