toLowerCase() lint warnings
You may run across a lint warning in Java or Kotlin on when using String.toLowerCase(). “Implicitly using the default locale is a common source of bugs: Use toLowerCase(Locale) instead.” So we can slap a @SupressWarning on the method and be …