Skip to content

Commit 1a25c12

Browse files
UbuntuUbuntu
Ubuntu
authored and
Ubuntu
committed
Correcting some comments
1 parent e4c0c01 commit 1a25c12

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

src/main/java/org/springframework/data/web/config/ReactiveQuerydslWebConfiguration.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
* Querydsl-specific web configuration for Spring Data. Registers a {@link HandlerMethodArgumentResolver} that builds up
3838
* {@link Predicate}s from web requests.
3939
*
40-
* @author Oliver Gierke
41-
* @author Mark Paluch
4240
* @author Matías Hermosilla
4341
* @since 1.11
4442
* @soundtrack Anika Nilles - Alter Ego
@@ -53,7 +51,7 @@ public class ReactiveQuerydslWebConfiguration implements WebFluxConfigurer {
5351

5452
/**
5553
* Default {@link ReactiveQuerydslPredicateArgumentResolver} to create Querydsl {@link Predicate} instances for
56-
* Spring MVC controller methods.
54+
* Spring WebFlux controller methods.
5755
*
5856
* @return
5957
*/

src/main/java/org/springframework/data/web/querydsl/QuerydslPredicateArgumentResolver.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ public class QuerydslPredicateArgumentResolver extends QuerydslPredicateArgument
5454
public QuerydslPredicateArgumentResolver(QuerydslBindingsFactory factory,
5555
Optional<ConversionService> conversionService) {
5656
super(factory, conversionService);
57-
// TODO Auto-generated constructor stub
5857
}
5958

6059
/*

src/main/java/org/springframework/data/web/querydsl/ReactiveQuerydslPredicateArgumentResolver.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
* {@link HandlerMethodArgumentResolver} to allow injection of {@link com.querydsl.core.types.Predicate} into Spring
4444
* WebFlux controller methods.
4545
*
46-
* @author Christoph Strobl
47-
* @author Oliver Gierke
4846
* @author Matías Hermosilla
4947
* @since 1.11
5048
*/
@@ -54,7 +52,6 @@ public class ReactiveQuerydslPredicateArgumentResolver extends QuerydslPredicate
5452
public ReactiveQuerydslPredicateArgumentResolver(QuerydslBindingsFactory factory,
5553
Optional<ConversionService> conversionService) {
5654
super(factory, conversionService);
57-
// TODO Auto-generated constructor stub
5855
}
5956

6057
/*

0 commit comments

Comments
 (0)