Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added Locale.setDefault() CS

...

Code Block
bgColor#FFcccc
"title".toUpperCase();

Compliant Solution (Explicit Locale)

This compliant solution explicitly sets the locale to English to avoid unexpected results.

Code Block
bgColor#ccccff
"title".toUpperCase(Locale.ENGLISH);

This guideline also applies to the String.equalsIgnoreCase() method.

Compliant Solution (Default Locale)

This compliant solution sets the default locale to English before proceeding with string operations.

Code Block
bgColor#ccccff

Locale.setDefault( Locale.ENGLISH);
"title".toUpperCase();

This guideline also applies to the String.equalsIgnoreCase() method.

...