Skip to content

Commit

Permalink
Merge pull request #9583 from sreenath-tm/issue_9540_fix
Browse files Browse the repository at this point in the history
Remove BibTeXML support
  • Loading branch information
Siedlerchr authored Jan 30, 2023
2 parents e526868 + bbb7e0b commit 0b9d629
Show file tree
Hide file tree
Showing 87 changed files with 1 addition and 1,725 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve

### Removed

- We removed the support of BibTeXML.[#9540](https://github.com/JabRef/jabref/issues/9540)



Expand Down
252 changes: 0 additions & 252 deletions src/main/java/org/jabref/logic/exporter/BibTeXMLExporter.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public static ExporterFactory create(List<TemplateExporter> customFormats,
exporters.add(new TemplateExporter("RIS", "ris", "ris", "ris", StandardFileType.RIS, layoutPreferences, savePreferences, BlankLineBehaviour.DELETE_BLANKS));
exporters.add(new TemplateExporter("MIS Quarterly", "misq", "misq", "misq", StandardFileType.RTF, layoutPreferences, savePreferences));
exporters.add(new TemplateExporter("CSL YAML", "yaml", "yaml", null, StandardFileType.YAML, layoutPreferences, savePreferences, BlankLineBehaviour.DELETE_BLANKS));
exporters.add(new BibTeXMLExporter());
exporters.add(new OpenOfficeDocumentCreator());
exporters.add(new OpenDocumentSpreadsheetCreator());
exporters.add(new MSBibExporter());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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));
Expand Down
Loading

0 comments on commit 0b9d629

Please sign in to comment.