Skip to content

Commit

Permalink
Remove Randomness when it should not be Random
Browse files Browse the repository at this point in the history
  • Loading branch information
FirstMegaGame4 committed Oct 23, 2024
1 parent 4120335 commit b8aa525
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,12 @@
import org.gradle.api.Action;

import java.io.Serializable;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.*;
import java.util.stream.Collectors;

public class InjectedInterfaces implements Serializable {

private final Map<String, Set<String>> iifs = new HashMap<>();
private final Map<String, Set<String>> iifs = new LinkedHashMap<>();

public boolean isEmpty() {
return this.iifs.isEmpty();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class ModEntrypoints implements Serializable {

private final boolean isQuilt;

private final Map<String, Set<String>> entrypoints = new HashMap<>();
private final Map<String, Set<String>> entrypoints = new LinkedHashMap<>();

public ModEntrypoints(boolean isQuilt) {
this.isQuilt = isQuilt;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class QuiltModJson extends ModJson<QuiltModDependency, QuiltAdvancedDepen
"mixin"
);

private final Map<String, String> contributors = new HashMap<>();
private final Map<String, String> contributors = new LinkedHashMap<>();
private final QuiltAdvancedDependencies dependencies = new QuiltAdvancedDependencies();
private final QuiltSimpleDependencies recommendations = new QuiltSimpleDependencies();
private final QuiltSimpleDependencies suggestions = new QuiltSimpleDependencies();
Expand Down

0 comments on commit b8aa525

Please sign in to comment.