Skip to content

Commit

Permalink
Update DoiCleanup.java
Browse files Browse the repository at this point in the history
  • Loading branch information
calixtus authored May 20, 2022
1 parent 875f9ea commit e387361
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/jabref/logic/cleanup/DoiCleanup.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ public List<FieldChange> cleanup(BibEntry entry) {
String decodeDoiFieldValue = "";
try {
decodeDoiFieldValue = URLDecoder.decode(doiFieldValue, "UTF-8");
} catch (
UnsupportedEncodingException e) {
} catch (UnsupportedEncodingException e) {
decodeDoiFieldValue = doiFieldValue;
}
doiFieldValue = decodeDoiFieldValue;
Expand Down

0 comments on commit e387361

Please sign in to comment.