Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove BibTeXML support #9583

Merged
merged 5 commits into from
Jan 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Importer Format changes
  • Loading branch information
sreenath-tm committed Jan 27, 2023
commit d0622b9c15b5477758035c84748954e9b6c4d208
Original file line number Diff line number Diff line change
@@ -9,7 +9,6 @@
import java.util.SortedSet;
import java.util.TreeSet;

import org.jabref.logic.importer.fileformat.BibTeXMLImporter;
import org.jabref.logic.importer.fileformat.BiblioscapeImporter;
import org.jabref.logic.importer.fileformat.BibtexImporter;
import org.jabref.logic.importer.fileformat.CffImporter;
@@ -58,7 +57,6 @@ public void resetImportFormats(ImporterPreferences importerPreferences,

formats.clear();

formats.add(new BibTeXMLImporter());
formats.add(new CopacImporter());
formats.add(new EndnoteImporter(importFormatPreferences));
formats.add(new EndnoteXmlImporter(importFormatPreferences));

This file was deleted.

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
@@ -4,7 +4,6 @@
import java.util.regex.Pattern;
import java.util.stream.Stream;

import org.jabref.logic.importer.fileformat.BibTeXMLImporter;
import org.jabref.logic.importer.fileformat.BiblioscapeImporter;
import org.jabref.logic.importer.fileformat.BibtexImporter;
import org.jabref.logic.importer.fileformat.CitaviXmlImporter;
@@ -113,7 +112,6 @@ public static Stream<Importer> instancesToTest() {
return Stream.of(
new BiblioscapeImporter(),
new BibtexImporter(importFormatPreferences, new DummyFileUpdateMonitor()),
new BibTeXMLImporter(),
new CopacImporter(),
new EndnoteImporter(importFormatPreferences),
new InspecImporter(),

This file was deleted.

This file was deleted.

Loading