DATACMNS-1101 - Remove getPersistentProperties/Associations from PersistentEntity.
Remove lately introduced getPersistentProperties / getAssociations and rather extend Iterable<? extends PersistentProperty<P>>
This commit is contained in:
committed by
Oliver Gierke
parent
88ac1fc165
commit
f6a6565638
@@ -155,7 +155,7 @@ public class AbstractMappingContextUnitTests {
|
||||
|
||||
assertThat(entity.getPersistentProperty("persons"))
|
||||
.satisfies(it -> assertThat(mappingContext.getPersistentEntity(it))
|
||||
.satisfies(inner -> assertThat(inner.getType()).isEqualTo(Person.class)));
|
||||
.satisfies(inner -> assertThat(((PersistentEntity)inner).getType()).isEqualTo(Person.class)));
|
||||
}
|
||||
|
||||
@Test // DATACMNS-380
|
||||
|
||||
Reference in New Issue
Block a user