Can't use a Java 1.4 API when we are supposed to compile on Java 1.3 ;-)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/branches/COLLECTIONS_3_2_X@1747098 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2016-06-07 00:39:53 +00:00
parent 4d4611671c
commit 876942fc66
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public class TestCaseInsensitiveMap extends AbstractTestIterableMap {
// COLLECTIONS-294 // COLLECTIONS-294
public void testLocaleIndependence() { public void testLocaleIndependence() {
Locale orig = Locale.getDefault(); Locale orig = Locale.getDefault();
Locale[] locales = { Locale.ENGLISH, new Locale("tr"), Locale.getDefault() }; Locale[] locales = { Locale.ENGLISH, new Locale("tr", ""), Locale.getDefault() };
String[][] data = { String[][] data = {
{ "i", "I" }, { "i", "I" },
{ "\u03C2", "\u03C3" }, { "\u03C2", "\u03C3" },