File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-graphql/src/main/java/org/springframework/graphql/data/query Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ public abstract class QuerydslDataFetcher<T> {
121
121
* @param environment contextual info for the GraphQL request
122
122
* @return the resulting predicate
123
123
*/
124
- @ SuppressWarnings ({"unchecked" , "rawtypes" })
124
+ @ SuppressWarnings ({"unchecked" })
125
125
protected Predicate buildPredicate (DataFetchingEnvironment environment ) {
126
126
MultiValueMap <String , Object > parameters = new LinkedMultiValueMap <>();
127
127
QuerydslBindings bindings = new QuerydslBindings ();
@@ -135,7 +135,7 @@ protected Predicate buildPredicate(DataFetchingEnvironment environment) {
135
135
parameters .put (entry .getKey (), values );
136
136
}
137
137
138
- return BUILDER .getPredicate (this .domainType , ( MultiValueMap ) parameters , bindings );
138
+ return BUILDER .getPredicate (this .domainType , parameters , bindings );
139
139
}
140
140
141
141
protected boolean requiresProjection (Class <?> resultType ) {
You can’t perform that action at this time.
0 commit comments