Skip to content

Commit

Permalink
enforce english locale when writing unique fraction
Browse files Browse the repository at this point in the history
  • Loading branch information
thoniTUB committed Feb 10, 2023
1 parent f26a94f commit 5a05dc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,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 5a05dc8

Please sign in to comment.