Skip to content

Commit

Permalink
HHH-11241 : checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gbadner committed Dec 20, 2016
1 parent 7dc1729 commit 3805752
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1770,6 +1770,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 @@ -1784,6 +1785,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 @@ -1798,6 +1800,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 @@ -1812,6 +1815,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 @@ -4511,6 +4515,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 3805752

Please sign in to comment.