Updates to*Case() to use Locale.ROOT

This commit is contained in:
spencergibb
2024-10-18 10:53:24 -04:00
committed by Oleg Zhurakousky
parent b65577d515
commit 900d03f816
83 changed files with 262 additions and 178 deletions

View File

@@ -16,6 +16,7 @@
package com.example;
import java.util.Locale;
import java.util.function.Function;
import org.springframework.boot.SpringApplication;
@@ -31,6 +32,6 @@ public class CloudFunctionMain {
@Bean
public Function<String, String> function() {
return value -> value.toUpperCase();
return value -> value.toUpperCase(Locale.ROOT);
}
}