I'm trying to achieve harmony between FindBugs and GWT 2.4 (being used with Java 6). FindBugs complains about this line ...
childrenStr.append(child.getName().toLowerCase());
with the error
Internationalization - Consider using Locale parameterized version of invoked method
To attempt to heal the pain, I added a Locale ...
childrenStr.append(child.getName().toLowerCase(Locale.ENGLISH));
but then GWT dies with the compile error ...
[ERROR] Line 346: The method toLowerCase() in the type String is not applicable for the arguments (Locale)
How can I achieve a lasting peace between the two whereby I resolve the FindBugs error and keep GWT quiet?
Thanks, - Dave