Skip to content

Commit 5933eed

Browse files
committed
Fix OpenRewrite
1 parent 51184fa commit 5933eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jablib/src/test/java/org/jabref/logic/exporter/OpenOfficeDocumentCreatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void performExportForSingleEntry(@TempDir Path testFolder) throws IOException, S
7777
// Files.copy(contentXmlPath, xmlFile.resolveSibling("test.xml"), StandardCopyOption.REPLACE_EXISTING);
7878

7979
try (InputStream xmlFileInputStream = Files.newInputStream(xmlFile);
80-
InputStream contentXmlInputStream = Files.newInputStream(contentXmlPath);
80+
InputStream contentXmlInputStream = Files.newInputStream(contentXmlPath)
8181
) {
8282
Input.Builder control = Input.from(xmlFileInputStream);
8383
Input.Builder test = Input.from(contentXmlInputStream);

0 commit comments

Comments
 (0)