Skip to content

Commit

Permalink
Remove field check for journal abbrev in entry editor (#7208)
Browse files Browse the repository at this point in the history
* Remove journal abbrev deteted in entry editor

Fixes  #3925

* add changelog
  • Loading branch information
Siedlerchr committed Dec 20, 2020
1 parent 5aa896a commit 6718c08
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
### Removed

- We removed the menu entry "Manage external file types" because it's already in 'Preferences' dialog [#6991](https://github.com/JabRef/jabref/issues/6991)
- We removed the integrity check "Abbreviation detected" for the field journal/journaltitle in the entry editor [#3925](https://github.com/JabRef/jabref/issues/3925)

## [5.1] – 2020-08-30

Expand Down
3 changes: 0 additions & 3 deletions src/main/java/org/jabref/logic/integrity/FieldCheckers.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ public FieldCheckers(BibDatabaseContext databaseContext, FilePreferences filePre
private static Multimap<Field, ValueChecker> getAllMap(BibDatabaseContext databaseContext, FilePreferences filePreferences, JournalAbbreviationRepository abbreviationRepository, boolean allowIntegerEdition) {
ArrayListMultimap<Field, ValueChecker> fieldCheckers = ArrayListMultimap.create(50, 10);

for (Field field : FieldFactory.getJournalNameFields()) {
fieldCheckers.put(field, new AbbreviationChecker(abbreviationRepository));
}
for (Field field : FieldFactory.getBookNameFields()) {
fieldCheckers.put(field, new AbbreviationChecker(abbreviationRepository));
}
Expand Down

0 comments on commit 6718c08

Please sign in to comment.