Skip to content

Commit

Permalink
Merge pull request #554 from boceckts/BiomailImporterTest
Browse files Browse the repository at this point in the history
BioMailImport format deleted.
  • Loading branch information
simonharrer committed Dec 21, 2015
2 parents 3ab3ccb + df05050 commit 8cbd1c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 223 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ to [sourceforge feature requests](https://sourceforge.net/p/jabref/features/) by
- Fixed #533: Preview parsed incorrectly when regular expression was enabled

### Removed
- Removed BioMail format importer
- Removed file history size preference (never available from the UI)
- Removed jstorImporter because it's hardly ever used, even Jstor.org doesn't support/export said format anymore
- Removed ScifinderImporter because it's hardly ever used, and we could not get resource files to test against
Expand Down
5 changes: 2 additions & 3 deletions src/main/java/net/sf/jabref/importer/ImportFormatReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public void resetImportFormats() {
formats.add(new BiblioscapeImporter());
formats.add(new BibtexImporter());
formats.add(new BibteXMLImporter());
formats.add(new BiomailImporter());
formats.add(new CopacImporter());
formats.add(new EndnoteImporter());
formats.add(new FreeCiteImporter());
Expand Down Expand Up @@ -359,7 +358,7 @@ public UnknownFormatImport(String format, ParserResult parserResult) {
/**
* Tries to import a file by iterating through the available import filters,
* and keeping the import that seems most promising.
* <p>
* <p/>
* If all fails this method attempts to read this file as bibtex.
*
* @throws IOException
Expand Down Expand Up @@ -410,7 +409,7 @@ public UnknownFormatImport importUnknownFormat(String filename) {
// Finally, if all else fails, see if it is a BibTeX file:
try {
ParserResult pr = OpenDatabaseAction.loadDatabase(new File(filename),
Globals.prefs.getDefaultEncoding());
Globals.prefs.getDefaultEncoding());
if ((pr.getDatabase().getEntryCount() > 0)
|| (pr.getDatabase().getStringCount() > 0)) {
pr.setFile(new File(filename));
Expand Down
220 changes: 0 additions & 220 deletions src/main/java/net/sf/jabref/importer/fileformat/BiomailImporter.java

This file was deleted.

0 comments on commit 8cbd1c4

Please sign in to comment.