Skip to content

Commit 75aec4e

Browse files
eclipse-pde-botakurtakov
authored andcommitted
Perform clean code of ui/org.eclipse.pde.bnd.ui
1 parent f98c69c commit 75aec4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,9 @@ 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" //$NON-NLS-1$
260+
);
261261
String res = dialog.open();
262262
if (res != null) {
263263
IPath filterPath = new Path(dialog.getFilterPath());

0 commit comments

Comments
 (0)