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 3, 2024
1 parent 1063982 commit b4bf58e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
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 b4bf58e

Please sign in to comment.