Commit 79b8197 1 parent ec47f21 commit 79b8197 Copy full SHA for 79b8197
File tree 1 file changed +2
-1
lines changed
src/main/java/org/jabref/logic/importer/fetcher
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 14
14
15
15
import org .jabref .logic .cleanup .MoveFieldCleanup ;
16
16
import org .jabref .logic .formatter .bibtexfields .ClearFormatter ;
17
+ import org .jabref .logic .formatter .bibtexfields .NormalizeMonthFormatter ;
17
18
import org .jabref .logic .formatter .bibtexfields .NormalizeNamesFormatter ;
18
19
import org .jabref .logic .formatter .bibtexfields .RemoveBracesFormatter ;
19
20
import org .jabref .logic .formatter .bibtexfields .RemoveNewlinesFormatter ;
@@ -143,6 +144,7 @@ public void doPostCleanup(BibEntry entry) {
143
144
new FieldFormatterCleanup (StandardField .ABSTRACT , new RemoveNewlinesFormatter ()).cleanup (entry );
144
145
new FieldFormatterCleanup (StandardField .TITLE , new RemoveBracesFormatter ()).cleanup (entry );
145
146
new FieldFormatterCleanup (StandardField .AUTHOR , new NormalizeNamesFormatter ()).cleanup (entry );
147
+ new FieldFormatterCleanup (StandardField .MONTH , new NormalizeMonthFormatter ()).cleanup (entry );
146
148
147
149
// Remove ADS note
148
150
new FieldFormatterCleanup (new UnknownField ("adsnote" ), new ClearFormatter ()).cleanup (entry );
@@ -249,7 +251,6 @@ public Optional<BibEntry> performSearchById(String identifier) throws FetcherExc
249
251
* bibcodes
250
252
*/
251
253
private List <BibEntry > performSearchByIds (Collection <String > identifiers ) throws FetcherException {
252
-
253
254
List <String > ids = identifiers .stream ().filter (identifier -> !StringUtil .isBlank (identifier )).collect (Collectors .toList ());
254
255
if (ids .isEmpty ()) {
255
256
return Collections .emptyList ();
You can’t perform that action at this time.
0 commit comments