All hail the mighty Checkstyle
This commit is contained in:
parent
50ba882b2d
commit
9cf6195110
|
@ -175,7 +175,7 @@ public interface StatelessSession extends SharedSessionContract, AutoCloseable,
|
|||
Connection connection();
|
||||
|
||||
@Remove
|
||||
default <@Remove T> NativeQuery<T> createSQLQuery(String queryString) {
|
||||
default <T> NativeQuery<T> createSQLQuery(String queryString) {
|
||||
return createNativeQuery( queryString );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,6 +26,7 @@ import org.hibernate.type.Type;
|
|||
*
|
||||
* @deprecated Replaced by {@link org.hibernate.query.sqm.function.SqmFunction}
|
||||
*/
|
||||
@Deprecated
|
||||
public interface SQLFunction {
|
||||
/**
|
||||
* Does this function have any arguments?
|
||||
|
|
|
@ -39,6 +39,9 @@ public enum RepresentationMode {
|
|||
return externalName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated {@link EntityMode} is deprecated itself
|
||||
*/
|
||||
@Deprecated
|
||||
public EntityMode getLegacyEntityMode() {
|
||||
return legacyEntityMode;
|
||||
|
|
|
@ -14,6 +14,7 @@ import org.hibernate.sql.ast.spi.SqlAstWalker;
|
|||
import org.hibernate.sql.ast.tree.SqlAstNode;
|
||||
|
||||
/**
|
||||
* The SQL AST from-clause node
|
||||
*
|
||||
* @author Steve Ebersole
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue