Skip to content

Commit c216d9b

Browse files
committed
#281 - Polishing.
Fix assertion messages.
1 parent f6105be commit c216d9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/main/java/org/springframework/data/r2dbc/query/QueryMapper.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ protected MetadataBackedField(SqlIdentifier name, RelationalPersistentEntity<?>
660660

661661
super(name);
662662

663-
Assert.notNull(entity, "MongoPersistentEntity must not be null!");
663+
Assert.notNull(entity, "RelationalPersistentEntity must not be null!");
664664

665665
this.entity = entity;
666666
this.mappingContext = context;
@@ -713,7 +713,7 @@ private boolean isPathToJavaLangClassProperty(PropertyPath path) {
713713

714714
/*
715715
* (non-Javadoc)
716-
* @see org.springframework.data.mongodb.core.convert.QueryMapper.Field#getTypeHint()
716+
* @see org.springframework.data.r2dbc.core.convert.QueryMapper.Field#getTypeHint()
717717
*/
718718
@Override
719719
public TypeInformation<?> getTypeHint() {

0 commit comments

Comments
 (0)