Skip to content

Commit

Permalink
HHH-11241 : checkstyle fixes
Browse files Browse the repository at this point in the history
(cherry picked from commit 3805752)
  • Loading branch information
gbadner committed Dec 20, 2016
1 parent 7469df8 commit c3d1573
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -1822,6 +1822,7 @@ public String[] getRootTableIdentifierColumnNames() {
* {@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 );
}
Expand All @@ -1836,6 +1837,7 @@ public String[] toColumns(String alias, String propertyName) throws QueryExcepti
* {@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 );
}
Expand All @@ -1850,6 +1852,7 @@ public String[] toColumns(String propertyName) throws QueryException {
* {@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 );
}
Expand All @@ -1864,6 +1867,7 @@ public Type toType(String propertyName) throws QueryException {
* {@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 );
}
Expand Down Expand Up @@ -4560,6 +4564,7 @@ public boolean consumesCollectionAlias() {
* {@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 );
}
Expand Down

0 comments on commit c3d1573

Please sign in to comment.