Skip to content

Commit

Permalink
Test if LinkedHashSet works..
Browse files Browse the repository at this point in the history
  • Loading branch information
JooHyukKim committed Aug 19, 2023
1 parent cd39a4b commit 0c7b632
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public Collection<NamedType> collectAndResolveSubtypesByTypeId(MapperConfig<?> c
AnnotatedClass baseType)
{
final Class<?> rawBase = baseType.getRawType();
Set<Class<?>> typesHandled = new HashSet<Class<?>>();
Set<Class<?>> typesHandled = new LinkedHashSet<>();
Map<String,NamedType> byName = new LinkedHashMap<String,NamedType>();

NamedType rootType = new NamedType(rawBase, null);
Expand Down

0 comments on commit 0c7b632

Please sign in to comment.