From f4070ce288904cbdcdb9e7258eb621becde8e898 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Thu, 12 Apr 2018 14:29:21 +0200 Subject: [PATCH] DATACMNS-1293 - Polishing. Fix leftovers pointing to legacy Querydsl packages in Javadoc. Reformat code. Original pull request: #284. --- .../data/querydsl/binding/QuerydslPredicate.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/springframework/data/querydsl/binding/QuerydslPredicate.java b/src/main/java/org/springframework/data/querydsl/binding/QuerydslPredicate.java index bd52cf7e8..b2ed3346e 100644 --- a/src/main/java/org/springframework/data/querydsl/binding/QuerydslPredicate.java +++ b/src/main/java/org/springframework/data/querydsl/binding/QuerydslPredicate.java @@ -21,9 +21,9 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * Annotation to customize the binding of HTTP request parameters to a Querydsl {@link com.mysema.query.types.Predicate} - * in Spring MVC handler methods. - * + * Annotation to customize the binding of HTTP request parameters to a Querydsl + * {@link com.querydsl.core.types.Predicate} in Spring MVC handler methods. + * * @author Christoph Strobl * @author Oliver Gierke * @since 1.11 @@ -33,21 +33,21 @@ import java.lang.annotation.Target; public @interface QuerydslPredicate { /** - * The root type to create the {@link com.mysema.query.types.Predicate}. Specify this explicitly if the type is not + * The root type to create the {@link com.querydsl.core.types.Predicate}. Specify this explicitly if the type is not * contained in the controller method's return type. - * + * * @return */ - Classroot() default Object.class; + Class root() default Object.class; /** * To customize the way individual properties' values should be bound to the predicate a * {@link QuerydslBinderCustomizer} can be specified here. We'll try to obtain a Spring bean of this type but fall * back to a plain instantiation if no bean is found in the current * {@link org.springframework.beans.factory.BeanFactory}. - * + * * @return */ @SuppressWarnings("rawtypes") - Classbindings() default QuerydslBinderCustomizer.class; + Class bindings() default QuerydslBinderCustomizer.class; }