Skip to content

Commit

Permalink
Biblatex preserves capital letters, checking whether letters may be c…
Browse files Browse the repository at this point in the history
…onverted to lowercase within the Integrity Check action is obsolete. Fixes #412
  • Loading branch information
simonharrer committed Nov 30, 2015
1 parent c9fdbce commit 8575f03
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ to [sourceforge feature requests](https://sourceforge.net/p/jabref/features/) by

### Fixed

- Biblatex preserves capital letters, checking whether letters may be converted to lowercase within the Integrity Check action is obsolete. Fixes #412

### Removed


Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package net.sf.jabref.logic.integrity;

import net.sf.jabref.Globals;
import net.sf.jabref.JabRefPreferences;
import net.sf.jabref.logic.l10n.Localization;
import net.sf.jabref.model.database.BibtexDatabase;
import net.sf.jabref.model.entry.BibtexEntry;
Expand Down Expand Up @@ -51,7 +53,9 @@ public List<IntegrityMessage> checkBibtexEntry(BibtexEntry entry) {

data = entry.getField("title");
if (data != null) {
TITLE_CHECKER.check(data.toString(), "title", entry, result);
if(!Globals.prefs.getBoolean(JabRefPreferences.BIBLATEX_MODE)) {
TITLE_CHECKER.check(data.toString(), "title", entry, result);
}
BRACKET_CHECKER.check(data.toString(), "title", entry, result);
}

Expand Down

0 comments on commit 8575f03

Please sign in to comment.