Skip to content

Commit

Permalink
fix #3693 (#3702)
Browse files Browse the repository at this point in the history
Duplicated functionality, if file already exists. Asks twice, if a file should be overriden.
  • Loading branch information
johannes-manner authored and tobiasdiez committed Feb 6, 2018
1 parent 39fd85f commit dfd62b0
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/main/java/org/jabref/gui/exporter/ExportAction.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.jabref.gui.exporter;

import java.awt.event.ActionEvent;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import java.util.stream.Collectors;
Expand Down Expand Up @@ -81,14 +80,6 @@ private void export(Path file, FileChooser.ExtensionFilter selectedExtensionFilt
FileUtil.addExtension(file, selectedExtension);
}

if (Files.exists(file)) {
// Warn that the file exists:
if (JOptionPane.showConfirmDialog(frame,
Localization.lang("'%0' exists. Overwrite file?", file.getFileName().toString()),
Localization.lang("Export"), JOptionPane.OK_CANCEL_OPTION) != JOptionPane.OK_OPTION) {
return;
}
}
final Exporter format = FileFilterConverter.getExporter(selectedExtensionFilter, exporters).orElseThrow(() -> new IllegalStateException("User didn't selected a file type for the extension"));
List<BibEntry> entries;
if (selectedOnly) {
Expand Down

0 comments on commit dfd62b0

Please sign in to comment.