DATACMNS-779 - Fixed JavaDoc in QuerydslPredicateBuilder.

Added JavaDoc to the constructor of QuerydslPredicateBuilder.
This commit is contained in:
Oliver Gierke
2015-10-22 11:45:17 +02:00
parent 896cc76fc7
commit d3a194c408

View File

@@ -57,6 +57,13 @@ public class QuerydslPredicateBuilder {
private final Map<PropertyPath, Path<?>> paths;
private final EntityPathResolver resolver;
/**
* Creates a new {@link QuerydslPredicateBuilder} for the given {@link ConversionService} and
* {@link EntityPathResolver}.
*
* @param conversionService must not be {@literal null}.
* @param resolver can be {@literal null}.
*/
public QuerydslPredicateBuilder(ConversionService conversionService, EntityPathResolver resolver) {
Assert.notNull(conversionService, "ConversionService must not be null!");