Skip to content

Commit

Permalink
Update ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/p…
Browse files Browse the repository at this point in the history
…lugin/ExportPackageVisibilitySection.java


formatting change

Co-authored-by: Hannes Wellmann <[email protected]>
  • Loading branch information
ruspl-afed and HannesWell committed Sep 28, 2024
1 parent b262000 commit 1d66a34
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,10 +382,8 @@ private void update(ExportPackageObject[] objects) {
}

private String description(ExportPackageObject[] packages) {
return Arrays.stream(packages)//
.filter(Objects::nonNull)//
.map(ExportPackageObject::getName)
.collect(Collectors.joining(", ")); //$NON-NLS-1$
return Arrays.stream(packages).filter(Objects::nonNull).map(ExportPackageObject::getName)
.collect(Collectors.joining(", ")); //$NON-NLS-1$
}

private BundleInputContext getBundleContext() {
Expand Down

0 comments on commit 1d66a34

Please sign in to comment.