Skip to content

Commit

Permalink
changed EntityType#properties to use LinkedHashSet instead of TreeSet
Browse files Browse the repository at this point in the history
  • Loading branch information
lpandzic committed Sep 2, 2022
1 parent c068ced commit 39a3b1c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import java.util.function.Function;
import org.jetbrains.annotations.Nullable;
/**
Expand All @@ -44,7 +43,7 @@ public class EntityType extends TypeAdapter implements Comparable<EntityType> {

private final Set<Delegate> delegates = new HashSet<Delegate>();

private final Set<Property> properties = new TreeSet<Property>();
private final Set<Property> properties = new LinkedHashSet<>();

private final Set<String> propertyNames = new HashSet<String>();

Expand Down

0 comments on commit 39a3b1c

Please sign in to comment.