# HG changeset patch # User Felix Wolfsteller # Date 1379506514 -7200 # Node ID 1f6c0915a58d08c47362dbed703a5f5c8aec34ef # Parent e25ef8376c14a907685a0de8836984c23984ebf7 issue971: Use ";" as CSV separator also in ChartExportHelper, with the effect that CSVs requested from diagram gui also contain it. diff -r e25ef8376c14 -r 1f6c0915a58d artifacts/src/main/java/org/dive4elements/river/exports/ChartExportHelper.java --- a/artifacts/src/main/java/org/dive4elements/river/exports/ChartExportHelper.java Wed Sep 18 12:25:05 2013 +0200 +++ b/artifacts/src/main/java/org/dive4elements/river/exports/ChartExportHelper.java Wed Sep 18 14:15:14 2013 +0200 @@ -75,7 +75,7 @@ public static final String DEFAULT_ENCODING = "UTF-8"; /** The default separator for the CSV export. */ - public static final char DEFAULT_CSV_SEPARATOR = ','; + public static final char DEFAULT_CSV_SEPARATOR = ';'; /**