Skip to content

Commit 492f09f

Browse files
Add isReadable method to UnwrappedMongoPersistentProperty.
Closes: #4489
1 parent e3e73f5 commit 492f09f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/mapping/UnwrappedMongoPersistentProperty.java

+5
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,11 @@ public boolean isWritable() {
255255
return delegate.isWritable();
256256
}
257257

258+
@Override
259+
public boolean isReadable() {
260+
return delegate.isReadable();
261+
}
262+
258263
@Override
259264
public boolean isImmutable() {
260265
return delegate.isImmutable();

0 commit comments

Comments
 (0)