We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9437ec2 commit c81b37cCopy full SHA for c81b37c
src/main/java/org/springframework/data/querydsl/binding/QuerydslPredicateBuilder.java
@@ -57,6 +57,13 @@ public class QuerydslPredicateBuilder {
57
private final Map<PropertyPath, Path<?>> paths;
58
private final EntityPathResolver resolver;
59
60
+ /**
61
+ * Creates a new {@link QuerydslPredicateBuilder} for the given {@link ConversionService} and
62
+ * {@link EntityPathResolver}.
63
+ *
64
+ * @param conversionService must not be {@literal null}.
65
+ * @param resolver can be {@literal null}.
66
+ */
67
public QuerydslPredicateBuilder(ConversionService conversionService, EntityPathResolver resolver) {
68
69
Assert.notNull(conversionService, "ConversionService must not be null!");
0 commit comments