Skip to content

Commit

Permalink
Remove FreeCiteImporter
Browse files Browse the repository at this point in the history
The web service is not offered anymore: https://library.brown.edu/libweb/freecite_notice.php
  • Loading branch information
koppor committed Nov 9, 2019
1 parent 42053a8 commit 68abbf7
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 298 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import org.jabref.logic.importer.fileformat.CustomImporter;
import org.jabref.logic.importer.fileformat.EndnoteImporter;
import org.jabref.logic.importer.fileformat.EndnoteXmlImporter;
import org.jabref.logic.importer.fileformat.FreeCiteImporter;
import org.jabref.logic.importer.fileformat.InspecImporter;
import org.jabref.logic.importer.fileformat.IsiImporter;
import org.jabref.logic.importer.fileformat.MedlineImporter;
Expand Down Expand Up @@ -58,7 +57,6 @@ public void resetImportFormats(ImportFormatPreferences newImportFormatPreference
formats.add(new CopacImporter());
formats.add(new EndnoteImporter(importFormatPreferences));
formats.add(new EndnoteXmlImporter(importFormatPreferences));
formats.add(new FreeCiteImporter(importFormatPreferences));
formats.add(new InspecImporter());
formats.add(new IsiImporter());
formats.add(new MedlineImporter());
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion src/main/java/org/jabref/logic/util/StandardFileType.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
public enum StandardFileType implements FileType {
BIBTEXML("bibx", "xml"),
ENDNOTE("ref", "enw"),
FREECITE("txt", "xml"),
ISI("isi", "txt"),
MEDLINE("nbib", "xml"),
MEDLINE_PLAIN("nbib", "txt"),
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,6 @@ Searching\ file\ system...=Searching file system...
Select\ directory=Select directory
Select\ files=Select files
BibTeX\ entry\ creation=BibTeX entry creation
Unable\ to\ connect\ to\ FreeCite\ online\ service.=Unable to connect to FreeCite online service.
BibTeX\ key\ patterns=BibTeX key patterns
Clear\ priority=Clear priority
Clear\ rank=Clear rank
Expand Down
2 changes: 0 additions & 2 deletions src/test/java/org/jabref/logic/importer/ImporterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import org.jabref.logic.importer.fileformat.BibtexImporter;
import org.jabref.logic.importer.fileformat.CopacImporter;
import org.jabref.logic.importer.fileformat.EndnoteImporter;
import org.jabref.logic.importer.fileformat.FreeCiteImporter;
import org.jabref.logic.importer.fileformat.InspecImporter;
import org.jabref.logic.importer.fileformat.IsiImporter;
import org.jabref.logic.importer.fileformat.MedlineImporter;
Expand Down Expand Up @@ -114,7 +113,6 @@ public static Stream<Importer> instancesToTest() {
new BibTeXMLImporter(),
new CopacImporter(),
new EndnoteImporter(importFormatPreferences),
new FreeCiteImporter(importFormatPreferences),
new InspecImporter(),
new IsiImporter(),
new MedlineImporter(),
Expand Down

This file was deleted.

0 comments on commit 68abbf7

Please sign in to comment.