Skip to content

Commit

Permalink
Use LinkedHashMap in ReducibleAnnotationData. (#7585)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed May 4, 2022
1 parent 9ae1fd8 commit c72f2a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class ReducibleAnnotationData<T> {
*/
public ReducibleAnnotationData(final String inputData) {
rawData = inputData;
attributeMap = new HashMap<>();
attributeMap = new LinkedHashMap<>();
attributeMap.put(Allele.NO_CALL, null);
}

Expand Down

0 comments on commit c72f2a8

Please sign in to comment.