We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 233c4e4 commit 9e9556dCopy full SHA for 9e9556d
ion/src/test/java/com/fasterxml/jackson/dataformat/ion/ionvalue/IonValueDeserializerTest.java
@@ -1,6 +1,6 @@
1
package com.fasterxml.jackson.dataformat.ion.ionvalue;
2
3
-import java.util.HashMap;
+import java.util.LinkedHashMap;
4
import java.util.Map;
5
import java.util.Objects;
6
@@ -25,7 +25,7 @@
25
26
public class IonValueDeserializerTest {
27
private static class Data<T> {
28
- private final Map<String, T> map = new HashMap<>();
+ private final Map<String, T> map = new LinkedHashMap<>();
29
30
protected Data() { }
31
0 commit comments