|
93 | 93 | * @author John Blum
|
94 | 94 | * @author Johannes Englmeier
|
95 | 95 | */
|
| 96 | +@SuppressWarnings("removal") |
96 | 97 | public abstract class RepositoryFactorySupport
|
97 | 98 | implements BeanClassLoaderAware, BeanFactoryAware, EnvironmentAware, EnvironmentCapable {
|
98 | 99 |
|
@@ -216,7 +217,7 @@ public Environment getEnvironment() {
|
216 | 217 | * {@link QueryMethodEvaluationContextProvider#DEFAULT}.
|
217 | 218 | * @deprecated since 3.4, use {@link #setEvaluationContextProvider(EvaluationContextProvider)} instead.
|
218 | 219 | */
|
219 |
| - @Deprecated(since = "3.4") |
| 220 | + @Deprecated(since = "3.4", forRemoval = true) |
220 | 221 | public void setEvaluationContextProvider(@Nullable QueryMethodEvaluationContextProvider evaluationContextProvider) {
|
221 | 222 | setEvaluationContextProvider(evaluationContextProvider == null ? EvaluationContextProvider.DEFAULT
|
222 | 223 | : evaluationContextProvider.getEvaluationContextProvider());
|
@@ -586,7 +587,7 @@ protected ProjectionFactory getProjectionFactory() {
|
586 | 587 | * @deprecated since 3.4, use {@link #getQueryLookupStrategy(Key, ValueExpressionDelegate)} instead to support
|
587 | 588 | * {@link org.springframework.data.expression.ValueExpression} in query methods.
|
588 | 589 | */
|
589 |
| - @Deprecated(since = "3.4") |
| 590 | + @Deprecated(since = "3.4", forRemoval = true) |
590 | 591 | protected Optional<QueryLookupStrategy> getQueryLookupStrategy(@Nullable Key key,
|
591 | 592 | QueryMethodEvaluationContextProvider evaluationContextProvider) {
|
592 | 593 | return Optional.empty();
|
|
0 commit comments