|
57 | 57 | import java.util.Collection;
|
58 | 58 | import java.util.Collections;
|
59 | 59 | import java.util.EnumSet;
|
60 |
| -import java.util.HashMap; |
61 |
| -import java.util.HashSet; |
| 60 | +import java.util.LinkedHashMap; |
62 | 61 | import java.util.LinkedHashSet;
|
63 | 62 | import java.util.Map;
|
64 | 63 | import java.util.Optional;
|
@@ -1264,7 +1263,7 @@ boolean apply(Warner warn) {
|
1264 | 1263 | }
|
1265 | 1264 |
|
1266 | 1265 | /** an incorporation cache keeps track of all executed incorporation-related operations */
|
1267 |
| - Map<IncorporationBinaryOp, Boolean> incorporationCache = new HashMap<>(); |
| 1266 | + Map<IncorporationBinaryOp, Boolean> incorporationCache = new LinkedHashMap<>(); |
1268 | 1267 |
|
1269 | 1268 | protected static class BoundFilter implements Predicate<Type> {
|
1270 | 1269 |
|
@@ -1426,7 +1425,7 @@ Pair<List<Node>, Integer> computeTreeToLeafs(Node n) {
|
1426 | 1425 | }
|
1427 | 1426 |
|
1428 | 1427 | /** cache used to avoid redundant computation of tree costs */
|
1429 |
| - final Map<Node, Pair<List<Node>, Integer>> treeCache = new HashMap<>(); |
| 1428 | + final Map<Node, Pair<List<Node>, Integer>> treeCache = new LinkedHashMap<>(); |
1430 | 1429 |
|
1431 | 1430 | /** constant value used to mark non-existent paths */
|
1432 | 1431 | final Pair<List<Node>, Integer> noPath = new Pair<>(null, Integer.MAX_VALUE);
|
@@ -1754,7 +1753,7 @@ protected boolean removeDependency(Node n) {
|
1754 | 1753 | * through all its dependencies.
|
1755 | 1754 | */
|
1756 | 1755 | protected Set<Node> closure() {
|
1757 |
| - Set<Node> closure = new HashSet<>(); |
| 1756 | + Set<Node> closure = new LinkedHashSet<>(); |
1758 | 1757 | closureInternal(closure);
|
1759 | 1758 | return closure;
|
1760 | 1759 | }
|
|
0 commit comments