Skip to content

Commit 9016ef5

Browse files
committed
fix some javadoc refs to not use import
1 parent 933b725 commit 9016ef5

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

hibernate-core/src/main/java/org/hibernate/type/descriptor/jdbc/EnumJdbcType.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import java.sql.ResultSet;
1010
import java.sql.SQLException;
1111

12-
import org.hibernate.dialect.MySQLDialect;
1312
import org.hibernate.type.descriptor.ValueBinder;
1413
import org.hibernate.type.descriptor.ValueExtractor;
1514
import org.hibernate.type.descriptor.WrapperOptions;
@@ -26,7 +25,7 @@
2625
* as {@link jakarta.persistence.EnumType#STRING}.
2726
*
2827
* @see org.hibernate.type.SqlTypes#ENUM
29-
* @see MySQLDialect#getEnumTypeDeclaration(String, String[])
28+
* @see org.hibernate.dialect.MySQLDialect#getEnumTypeDeclaration(String, String[])
3029
*
3130
* @author Gavin King
3231
*/

hibernate-core/src/main/java/org/hibernate/type/descriptor/jdbc/H2FormatJsonJdbcType.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package org.hibernate.type.descriptor.jdbc;
66

77
import org.hibernate.dialect.Dialect;
8-
import org.hibernate.dialect.type.H2JsonJdbcType;
98
import org.hibernate.metamodel.mapping.EmbeddableMappingType;
109
import org.hibernate.metamodel.spi.RuntimeModelCreationContext;
1110
import org.hibernate.sql.ast.spi.SqlAppender;
@@ -15,7 +14,7 @@
1514
* '{@code ? format json}' write expression for H2.
1615
*
1716
* @author Marco Belladelli
18-
* @deprecated Use {@link H2JsonJdbcType} instead
17+
* @deprecated Use {@link org.hibernate.dialect.type.H2JsonJdbcType} instead
1918
*/
2019
@Deprecated(forRemoval = true, since = "6.5")
2120
public class H2FormatJsonJdbcType extends JsonJdbcType {

hibernate-core/src/main/java/org/hibernate/type/descriptor/jdbc/OrdinalEnumJdbcType.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
*/
55
package org.hibernate.type.descriptor.jdbc;
66

7-
import org.hibernate.dialect.MySQLDialect;
8-
97
import static org.hibernate.type.SqlTypes.ORDINAL_ENUM;
108

119
/**
@@ -15,7 +13,7 @@
1513
* as {@link jakarta.persistence.EnumType#ORDINAL}.
1614
*
1715
* @see org.hibernate.type.SqlTypes#ORDINAL_ENUM
18-
* @see MySQLDialect#getEnumTypeDeclaration(String, String[])
16+
* @see org.hibernate.dialect.MySQLDialect#getEnumTypeDeclaration(String, String[])
1917
*/
2018
public class OrdinalEnumJdbcType extends EnumJdbcType {
2119

0 commit comments

Comments
 (0)