Skip to content

Commit 378ac67

Browse files
committed
formatting
1 parent dc78883 commit 378ac67

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

jabgui/src/main/java/org/jabref/gui/preview/ClipboardContentGenerator.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,9 @@ public ClipboardContent generate(List<BibEntry> selectedEntries, CitationStyleOu
3535
if (previewPreferences.getSelectedPreviewLayout() instanceof CitationStylePreviewLayout) {
3636
// if it's generated by a citation style take care of each output format
3737
return switch (outputFormat) {
38-
case HTML ->
39-
processHtml(citations);
40-
case TEXT ->
41-
processText(citations);
42-
case MARKDOWN ->
43-
processMarkdown(citations);
38+
case HTML -> processHtml(citations);
39+
case TEXT -> processText(citations);
40+
case MARKDOWN -> processMarkdown(citations);
4441
};
4542
} else {
4643
// if it is not a citation style take care of the preview

0 commit comments

Comments
 (0)