Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed May 6, 2018
1 parent 03f544d commit 1a0cde3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/jabref/gui/exporter/ExportAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import org.jabref.logic.exporter.Exporter;
import org.jabref.logic.exporter.ExporterFactory;
import org.jabref.logic.l10n.Localization;
import org.jabref.logic.util.BasicFileType;
import org.jabref.logic.util.FileType;
import org.jabref.logic.util.io.FileUtil;
import org.jabref.model.entry.BibEntry;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/preferences/CustomExportList.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private Optional<TemplateExporter> createFormat(String exporterName, String file
} else {
lfFileName = filename;
}
if(extension.contains(".")) {
if (extension.contains(".")) {
extension = extension.substring(extension.indexOf('.') + 1, extension.length());
}

Expand Down

0 comments on commit 1a0cde3

Please sign in to comment.