Skip to content

Commit

Permalink
Merge pull request #368 from thoniTUB/master
Browse files Browse the repository at this point in the history
Enforce english locale when writing unique fraction cells
  • Loading branch information
janblom authored Sep 28, 2023
2 parents 490350e + 5a05dc8 commit a7eb531
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ private void createFieldOverviewSheet() {
fieldInfo.nProcessed,
fieldInfo.getFractionEmpty(),
fieldInfo.hasValuesTrimmed() ? String.format("<= %d", uniqueCount) : uniqueCount,
fieldInfo.hasValuesTrimmed() ? String.format("<= %.3f", fractionUnique) : fractionUnique
fieldInfo.hasValuesTrimmed() ? String.format(Locale.ENGLISH, "<= %.3f", fractionUnique) : fractionUnique
));
if (calculateNumericStats) {
values.addAll(Arrays.asList(
Expand Down

0 comments on commit a7eb531

Please sign in to comment.