Fix typos in documentations.
Fix typos in READMEs, javadoc, comments and code. Original pull request #642
This commit is contained in:
committed by
Jens Schauder
parent
1aec184ff0
commit
ce994f9ea0
@@ -84,7 +84,7 @@ class Application {
|
||||
@Override
|
||||
public <T> T mapRow(RelationalPersistentEntity<T> entity, ResultSet resultSet, Object key) {
|
||||
|
||||
// rows will not mapped to the entity interface, but to its implementation generated by Immutable
|
||||
// rows will not be mapped to the entity interface, but to its implementation generated by Immutable
|
||||
RelationalPersistentEntity<T> implementationEntity = getImplementationEntity(mappingContext, entity);
|
||||
return super.mapRow(implementationEntity, resultSet, key);
|
||||
}
|
||||
@@ -93,7 +93,7 @@ class Application {
|
||||
public <T> T mapRow(PersistentPropertyPathExtension path, ResultSet resultSet, Identifier identifier,
|
||||
Object key) {
|
||||
|
||||
// rows will not mapped to the entity interface, but to its implementation generated by Immutable
|
||||
// rows will not be mapped to the entity interface, but to its implementation generated by Immutable
|
||||
RelationalPersistentEntity<?> implementationEntity = getImplementationEntity(mappingContext,
|
||||
path.getLeafEntity());
|
||||
var propertyPath = new DelegatePersistentPropertyPathExtension(mappingContext,
|
||||
|
||||
Reference in New Issue
Block a user