Skip to content

Commit

Permalink
subst: always use a linked map
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Jan 7, 2023
1 parent ef94733 commit 3506b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/src/main/java/org/aya/core/visitor/Subst.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public record Subst(
}));

public Subst() {
this(MutableMap.create());
this(MutableLinkedHashMap.of());
}

public Subst(@NotNull AnyVar var, @NotNull Term term) {
Expand Down

0 comments on commit 3506b7b

Please sign in to comment.