HHH-11241 : checkstyle fixes

This commit is contained in:
Gail Badner 2016-12-19 20:23:27 -08:00
parent 7dc1729483
commit 3805752731
1 changed files with 5 additions and 0 deletions

View File

@ -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 );
}