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;
|
||||
|
|
|
@ -61,4 +61,4 @@ public interface ManagedDomainType<J> extends SimpleDomainType<J>, ManagedType<J
|
|||
|
||||
<S extends J> ManagedDomainType<S> findSubType(String subTypeName);
|
||||
<S extends J> ManagedDomainType<S> findSubType(Class<S> subType);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
@ -39,4 +40,4 @@ public class FromClause implements SqlAstNode {
|
|||
public void accept(SqlAstWalker sqlTreeWalker) {
|
||||
sqlTreeWalker.visitFromClause( this );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -61,4 +61,4 @@ public interface Fetch {
|
|||
FetchParentAccess parentAccess,
|
||||
Consumer<Initializer> collector,
|
||||
AssemblerCreationState creationState);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue