From c72f2a88bff0dc401eb66bfc59f0896f48f94aa2 Mon Sep 17 00:00:00 2001 From: Chris Norman Date: Wed, 4 May 2022 08:28:58 -0400 Subject: [PATCH] Use LinkedHashMap in ReducibleAnnotationData. (#7585) --- .../annotator/allelespecific/ReducibleAnnotationData.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/broadinstitute/hellbender/tools/walkers/annotator/allelespecific/ReducibleAnnotationData.java b/src/main/java/org/broadinstitute/hellbender/tools/walkers/annotator/allelespecific/ReducibleAnnotationData.java index e3ce661e55c..6162404976a 100644 --- a/src/main/java/org/broadinstitute/hellbender/tools/walkers/annotator/allelespecific/ReducibleAnnotationData.java +++ b/src/main/java/org/broadinstitute/hellbender/tools/walkers/annotator/allelespecific/ReducibleAnnotationData.java @@ -18,7 +18,7 @@ public class ReducibleAnnotationData { */ public ReducibleAnnotationData(final String inputData) { rawData = inputData; - attributeMap = new HashMap<>(); + attributeMap = new LinkedHashMap<>(); attributeMap.put(Allele.NO_CALL, null); }