Skip to content

Commit

Permalink
remove treeset
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborflorian committed Apr 11, 2024
1 parent d9048ae commit 0452aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hu/blackbelt/judo/dao/api/PayloadImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public PayloadImpl(Map<String, Object> map) {
}
}
this.internal = new TreeMap<>();
for (Map.Entry<String, Object> entry : new TreeSet<>(map.entrySet())) {
for (Map.Entry<String, Object> entry : map.entrySet()) {
String key = entry.getKey();
Object value = entry.getValue();
if (value instanceof List) {
Expand Down

0 comments on commit 0452aa2

Please sign in to comment.