Fix JavaDoc.

Closes #2314
This commit is contained in:
Jens Schauder
2021-09-24 11:42:28 +02:00
parent bf2ae2baee
commit 4e3464fa5f
2 changed files with 6 additions and 10 deletions

View File

@@ -111,9 +111,8 @@ public abstract class JpaQueryExecution {
/**
* Method to implement {@link AbstractStringBasedJpaQuery} executions by single enum values.
*
* @param query
* @param accessor
* @return
* @param query must not be {@literal null}.
* @param accessor must not be {@literal null}.
*/
@Nullable
protected abstract Object doExecute(AbstractJpaQuery query, JpaParametersParameterAccessor accessor);

View File

@@ -129,10 +129,9 @@ public final class JpaQueryLookupStrategy {
/**
* Creates a new {@link DeclaredQueryLookupStrategy}.
*
* @param em
* @param extractor
* @param queryMethodFactory
* @param evaluationContextProvider
* @param em must not be {@literal null}.
* @param queryMethodFactory must not be {@literal null}.
* @param evaluationContextProvider must not be {@literal null}.
*/
public DeclaredQueryLookupStrategy(EntityManager em, JpaQueryMethodFactory queryMethodFactory,
QueryMethodEvaluationContextProvider evaluationContextProvider) {
@@ -263,9 +262,7 @@ public final class JpaQueryLookupStrategy {
* @param queryMethodFactory must not be {@literal null}.
* @param key may be {@literal null}.
* @param evaluationContextProvider must not be {@literal null}.
* @param escape
* @param extractor must not be {@literal null}.
* @return
* @param escape must not be {@literal null}.
*/
public static QueryLookupStrategy create(EntityManager em, JpaQueryMethodFactory queryMethodFactory,
@Nullable Key key, QueryMethodEvaluationContextProvider evaluationContextProvider, EscapeCharacter escape) {