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