We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3db2669 commit aec8f1aCopy full SHA for aec8f1a
src/main/java/org/springframework/data/mapping/model/AbstractPersistentProperty.java
@@ -157,15 +157,6 @@ public TypeInformation<?> getTypeInformation() {
157
158
@Override
159
public Iterable<? extends TypeInformation<?>> getPersistentEntityTypeInformation() {
160
-
161
- if (isMap() || isCollectionLike()) {
162
- return entityTypeInformation.get();
163
- }
164
165
- if (!isEntity()) {
166
- return Collections.emptySet();
167
168
169
return entityTypeInformation.get();
170
}
171
@@ -292,6 +283,7 @@ public Class<?> getActualType() {
292
283
return getActualTypeInformation().getType();
293
284
294
285
286
+ @Override
295
287
public boolean usePropertyAccess() {
296
288
return usePropertyAccess.get();
297
289
0 commit comments