Polishing.

Fix assertion.

See #563
This commit is contained in:
Mark Paluch
2024-02-21 08:48:59 +01:00
parent 95ec0c1eab
commit 587f63a9ec

View File

@@ -87,7 +87,7 @@ public class KeyValueRepositoryFactoryBean<T extends Repository<S, ID>, S, ID>
*/
public void setQueryType(Class<? extends RepositoryQuery> repositoryQueryType) {
Assert.notNull(queryCreator, "Query creator type must not be null");
Assert.notNull(repositoryQueryType, "Query creator type must not be null");
this.repositoryQueryType = repositoryQueryType;