Skip to content

Commit

Permalink
Add missing ";"
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Jun 17, 2024
1 parent 365c108 commit 559ef3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/entryeditor/EntryEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public EntryEditor(LibraryTab libraryTab) {
setupKeyBindings();

this.allPossibleTabs = createTabs();
this.previewTabs = this.allPossibleTabs.stream().filter(OffersPreview.class::isInstance).map(OffersPreview.class::cast).toList()
this.previewTabs = this.allPossibleTabs.stream().filter(OffersPreview.class::isInstance).map(OffersPreview.class::cast).toList();

setupDragAndDrop(libraryTab);

Expand Down

0 comments on commit 559ef3c

Please sign in to comment.