From d86ec22054b1e98d18820c73dd8cd94a11c08585 Mon Sep 17 00:00:00 2001 From: Katja Luther Date: Mon, 9 Mar 2020 16:55:13 +0100 Subject: [PATCH] fix #8879: remove export from file name --- .../taxeditor/io/wizard/ExportToFileDestinationWizardPage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/ExportToFileDestinationWizardPage.java b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/ExportToFileDestinationWizardPage.java index 657a41583..5aadeaa90 100644 --- a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/ExportToFileDestinationWizardPage.java +++ b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/ExportToFileDestinationWizardPage.java @@ -486,7 +486,7 @@ public class ExportToFileDestinationWizardPage extends WizardPage implements Sel buffer.append(sdf.format(cal.getTime())); buffer.append("-"); - buffer.append(type + "_export_"); + buffer.append(type); String source = ((CdmRemoteSource)CdmStore.getActiveCdmSource()).toString(); source = source.substring(source.indexOf("/")+1); -- 2.34.1