HHH-11241 : checkstyle fixes

(cherry picked from commit 3805752731)
This commit is contained in:
Gail Badner 2016-12-19 20:23:27 -08:00
parent 285c5eb43e
commit d989d6e4f2
1 changed files with 5 additions and 0 deletions

View File

@ -1820,6 +1820,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 );
}
@ -1834,6 +1835,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 );
}
@ -1848,6 +1850,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 );
}
@ -1862,6 +1865,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 );
}
@ -4557,6 +4561,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 );
}