From c3d1573fdf5105bf4d1f14c16f18afe19dd294af Mon Sep 17 00:00:00 2001 From: Gail Badner Date: Mon, 19 Dec 2016 20:23:27 -0800 Subject: [PATCH] HHH-11241 : checkstyle fixes (cherry picked from commit 3805752731a110c7712c026bee46bc751c16eb99) --- .../hibernate/persister/entity/AbstractEntityPersister.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hibernate-core/src/main/java/org/hibernate/persister/entity/AbstractEntityPersister.java b/hibernate-core/src/main/java/org/hibernate/persister/entity/AbstractEntityPersister.java index b6cd1f29a3..8e6fd95b5f 100644 --- a/hibernate-core/src/main/java/org/hibernate/persister/entity/AbstractEntityPersister.java +++ b/hibernate-core/src/main/java/org/hibernate/persister/entity/AbstractEntityPersister.java @@ -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 ); } @@ -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 ); } @@ -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 ); } @@ -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 ); } @@ -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 ); }