From 5a90ec879d1582769859ed938d25567212abe7e7 Mon Sep 17 00:00:00 2001 From: "Harshit.Gupta7" Date: Tue, 23 Jan 2024 19:09:21 +0530 Subject: [PATCH] #10506 Fixed checkstyle and markedown error --- CHANGELOG.md | 9 ++++++--- .../org/jabref/logic/integrity/PersonNamesChecker.java | 1 - 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f0e5629548..8e0dbd114fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,14 +32,17 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv - We fixed the colors of the icon on hover for unset special fields. [#10431](https://github.com/JabRef/jabref/issues/10431) ### Removed + ## [5.13] – 2024-01-23 + ### Fixed -- Fixed an open issue Add quality check and cleanup for problematic unicode characters.[#10506] + +- Fixed an open issue Add quality check and cleanup for problematic unicode characters.[#10506](https://github.com/JabRef/jabref/issues/10506) ### Added -- Added new Integrity check option for Non NFC format values.[#10506] -- Added new Clean up option to formate the Non NFC values.[#10506] +- Added new Integrity check option for Non NFC format values.[#10506](https://github.com/JabRef/jabref/issues/10506) +- Added new Clean up option to formate the Non NFC values.[#10506](https://github.com/JabRef/jabref/issues/10506) ## [5.12] – 2023-12-24 diff --git a/src/main/java/org/jabref/logic/integrity/PersonNamesChecker.java b/src/main/java/org/jabref/logic/integrity/PersonNamesChecker.java index bdfb1261eb7..7c20e9d3209 100644 --- a/src/main/java/org/jabref/logic/integrity/PersonNamesChecker.java +++ b/src/main/java/org/jabref/logic/integrity/PersonNamesChecker.java @@ -40,7 +40,6 @@ public Optional checkValue(String value) { if (!authorList.getAsLastFirstNamesWithAnd(false).equals(value) && !authorList.getAsFirstLastNamesWithAnd().equals(value)) { return Optional.of(Localization.lang("Names are not in the standard %0 format.", bibMode.getFormattedName())); - } return Optional.empty(); }