HHH-11241 : checkstyle fixes
This commit is contained in:
parent
7dc1729483
commit
3805752731
|
@ -1770,6 +1770,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public String[] toColumns(String alias, String propertyName) throws QueryException {
|
||||
return propertyMapping.toColumns( alias, propertyName );
|
||||
}
|
||||
|
@ -1784,6 +1785,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public String[] toColumns(String propertyName) throws QueryException {
|
||||
return propertyMapping.getColumnNames( propertyName );
|
||||
}
|
||||
|
@ -1798,6 +1800,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public Type toType(String propertyName) throws QueryException {
|
||||
return propertyMapping.toType( propertyName );
|
||||
}
|
||||
|
@ -1812,6 +1815,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public String[] getPropertyColumnNames(String propertyName) {
|
||||
return propertyMapping.getColumnNames( propertyName );
|
||||
}
|
||||
|
@ -4511,6 +4515,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public Type getPropertyType(String propertyName) throws MappingException {
|
||||
return propertyMapping.toType( propertyName );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue