Skip to content

Commit

Permalink
HHH-14744 : Checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gbadner authored and Sanne committed Aug 25, 2021
1 parent 4bb3de0 commit 800436e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Expand Up @@ -586,7 +586,7 @@ private NameSpaceTablesInformation extractNameSpaceTablesInformation(ResultSet r
* @param schemaFilter
* @param tableNameFilter
* @param tableTypes
* @return
* @return results of type {@code T}
* @throws SQLException
*/
protected abstract <T> T processTableResultSet(
Expand Down Expand Up @@ -888,7 +888,7 @@ private PrimaryKeyInformation extractPrimaryKeyInformation(
* @param schemaFilter
* @param tableName
* @param approximate
* @return
* @return results of type {@code T}
* @throws SQLException
*/
protected abstract <T> T processIndexInfoResultSet(
Expand Down Expand Up @@ -923,7 +923,7 @@ public Iterable<IndexInformation> getIndexes(TableInformation tableInformation)
}

try {
processIndexInfoResultSet(
processIndexInfoResultSet(
catalogFilter,
schemaFilter,
tableName.getTableName(),
Expand Down
@@ -1,3 +1,9 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.tool.schema.extract.internal;

import java.sql.ResultSet;
Expand Down

0 comments on commit 800436e

Please sign in to comment.