aboutsummaryrefslogtreecommitdiffstats
path: root/tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java')
-rw-r--r--tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java b/tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java
index a83e5bb..36c3d3f 100644
--- a/tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java
+++ b/tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java
@@ -83,7 +83,7 @@ public class LocalesTestTest {
ServerAccess.logOutputReprint("Setting locales");
Map<String, String> p = System.getenv();
Set<Entry<String, String>> r = p.entrySet();
- List<Entry<String, String>> rr = new ArrayList(r);
+ List<Entry<String, String>> rr = new ArrayList<Entry<String, String>>(r);
Collections.sort(rr, new Comparator<Entry<String, String>>() {
@Override