Skip to content

Commit

Permalink
chore: Change HashMap to LinkedHashMap in custom fees assessment (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Neeharika-Sompalli authored Dec 2, 2023
1 parent fe02862 commit c71508e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.Function;

public class AdjustmentUtils {
public static final Function<TokenID, Map<AccountID, Long>> ADJUSTMENTS_MAP_FACTORY = ignore -> new HashMap<>();
public static final Function<TokenID, Map<AccountID, Long>> ADJUSTMENTS_MAP_FACTORY =
ignore -> new LinkedHashMap<>();

private AdjustmentUtils() {
throw new UnsupportedOperationException("Utility Class");
Expand Down

0 comments on commit c71508e

Please sign in to comment.