HHH-11473 - Fix checkstyle errors

This commit is contained in:
Andrea Boriero 2017-02-21 10:37:16 +00:00
parent 2980dc4e84
commit 9cb171bfeb
9 changed files with 24 additions and 6 deletions

View File

@ -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.dialect;
/**

View File

@ -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.dialect;
/**

View File

@ -15,7 +15,7 @@ import org.hibernate.dialect.function.StaticPrecisionFspTimestampFunction;
* @author Gail Badner
* @deprecated Use "hibernate.dialect.storage_engine=innodb" environment variable or JVM system property instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
public class MySQL57InnoDBDialect extends MySQL5InnoDBDialect {
public MySQL57InnoDBDialect() {
super();

View File

@ -12,7 +12,7 @@ package org.hibernate.dialect;
* @author Scott Marlow
* @deprecated Use "hibernate.dialect.storage_engine=innodb" environment variable or JVM system property instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
public class MySQL5InnoDBDialect extends MySQL5Dialect {
@Override

View File

@ -12,7 +12,7 @@ package org.hibernate.dialect;
* @author Gavin King
* @deprecated Use "hibernate.dialect.storage_engine=innodb" environment variable or JVM system property instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
public class MySQLInnoDBDialect extends MySQLDialect {
@Override

View File

@ -12,7 +12,7 @@ package org.hibernate.dialect;
* @author Gavin King
* @deprecated Use "hibernate.dialect.storage_engine=myisam" environment variable or JVM system property instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
public class MySQLMyISAMDialect extends MySQLDialect {
@Override
public String getTableTypeString() {

View File

@ -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.dialect;
/**

View File

@ -14,7 +14,7 @@ package org.hibernate.spatial.dialect.mysql;
* creation-date: 9/13/13
* @deprecated Use "hibernate.dialect.storage_engine=innodb" environment variable or JVM system property instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
public class MySQL56InnoDBSpatialDialect extends MySQL56SpatialDialect {
}

View File

@ -15,7 +15,7 @@ import org.hibernate.dialect.MySQLStorageEngine;
* @author Karel Maesen, Geovise BVBA
* @deprecated Use "hibernate.dialect.storage_engine=innodb" environment variable or JVM system property instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
public class MySQL5InnoDBSpatialDialect extends MySQL5SpatialDialect {
@Override