Skip to content

Commit

Permalink
[Minor] StrolchEnum uses Locale.forLanguageTag()
Browse files Browse the repository at this point in the history
  • Loading branch information
eitch committed Oct 21, 2024
1 parent 0687761 commit 0d3befa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public String getLocale() {
}

public void setLocale(String locale) {
this.localeL = new Locale(locale);
this.localeL = Locale.forLanguageTag(locale);
this.locale = locale;
}

Expand Down

0 comments on commit 0d3befa

Please sign in to comment.