Applying one of Benjamin's fixes from COLLETIONS-294. testBoolean goes on to look for English

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@655204 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2008-05-10 22:46:43 +00:00
parent ad76d4face
commit d72bf81d8b
1 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@ import java.util.Enumeration;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Properties;
@ -1238,7 +1239,7 @@ public class ExtendedProperties extends Hashtable {
* text maps to a boolean value, or <code>null</code> otherwise.
*/
public String testBoolean(String value) {
String s = value.toLowerCase();
String s = value.toLowerCase(Locale.ENGLISH);
if (s.equals("true") || s.equals("on") || s.equals("yes")) {
return "true";