Příklad

public class ClassA {
String s;
public void methodA {
String s2 = s.toUpperCase();
}

}
Řešení
Uveďte Locale.

public class ClassA {
String s;
Locale l = new Locale("en");
public void methodA {
String s2 = s.toUpperCase(l);
}

}