use of org.jabref.logic.cleanup.DoiCleanup in project jabref by JabRef.
the class DBLPFetcher method doPostCleanup.
@Override
public void doPostCleanup(BibEntry entry) {
DoiCleanup doiCleaner = new DoiCleanup();
FieldFormatterCleanup clearTimestampFormatter = new FieldFormatterCleanup(FieldName.TIMESTAMP, new ClearFormatter());
doiCleaner.cleanup(entry);
clearTimestampFormatter.cleanup(entry);
}
Aggregations