Skip to content

Commit

Permalink
chore: set default locale to English
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Jul 2, 2023
1 parent eb7bb7d commit c6ef386
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;

import java.util.Locale;
import java.util.TimeZone;

@Slf4j
@SpringBootApplication(proxyBeanMethods = false)
public class ClnSpendAndReplaceApplication {
static {
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
Locale.setDefault(Locale.ENGLISH);
}

public static void main(String[] args) {
Expand Down

0 comments on commit c6ef386

Please sign in to comment.