Skip to content

Commit

Permalink
HSEARCH-5082 WIP-remove: Upgrade to Hibernate ORM 7.0 modify a test
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-bekhta committed Apr 23, 2024
1 parent da25da3 commit c94772c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -212,7 +212,7 @@ public static class ContainingEntity {
extraction = @ContainerExtraction(BuiltinContainerExtractors.MAP_KEY),
targetType = ContainedEntity.class
)
private Map<Object, String> containedIndexedEmbeddedWithCast = new LinkedHashMap<>();
private Map<ContainedEntity, String> containedIndexedEmbeddedWithCast = new LinkedHashMap<>();

@IndexedEmbedded
@Embedded
Expand Down Expand Up @@ -288,7 +288,7 @@ public Map<ContainedEntity, String> getContainedUsedInCrossEntityDerivedProperty
return containedUsedInCrossEntityDerivedProperty;
}

public Map<Object, String> getContainedIndexedEmbeddedWithCast() {
public Map<ContainedEntity, String> getContainedIndexedEmbeddedWithCast() {
return containedIndexedEmbeddedWithCast;
}

Expand Down

0 comments on commit c94772c

Please sign in to comment.