Skip to content
Merged
Changes from all commits
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
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