HHH-11473 - Fix checkstyle errors
This commit is contained in:
parent
2980dc4e84
commit
9cb171bfeb
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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 {
|
||||
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue