Skip to content

Commit 6716d54

Browse files
authored
Use basic type (#13016)
1 parent 6547d18 commit 6716d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jablib/src/main/java/org/jabref/logic/bibtex/BibEntryWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void write(BibEntry entry, BibWriter out, BibDatabaseMode bibDatabaseMode
6666
* @param bibDatabaseMode The database mode (bibtex or biblatex)
6767
* @param reformat Should the entry be in any case, even if no change occurred?
6868
*/
69-
public void write(BibEntry entry, BibWriter out, BibDatabaseMode bibDatabaseMode, Boolean reformat) throws IOException {
69+
public void write(BibEntry entry, BibWriter out, BibDatabaseMode bibDatabaseMode, boolean reformat) throws IOException {
7070
// if the entry has not been modified, write it as it was
7171
if (!reformat && !entry.hasChanged()) {
7272
out.write(entry.getParsedSerialization());

0 commit comments

Comments
 (0)