You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed a level of indentation from ExpressionEvaluationParameterBinder.replacePlaceholders(…). Polished JavaDoc.
Original pull request: spring-projects#332.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/query/ExpressionEvaluatingParameterBinder.java
+37-36
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,7 @@
38
38
*
39
39
* @author Christoph Strobl
40
40
* @author Thomas Darimont
41
+
* @author Oliver Gierke
41
42
* @since 1.9
42
43
*/
43
44
classExpressionEvaluatingParameterBinder {
@@ -62,13 +63,13 @@ public ExpressionEvaluatingParameterBinder(SpelExpressionParser expressionParser
62
63
}
63
64
64
65
/**
65
-
* Bind values provided by {@link MongoParameterAccessor} to placeholders in {@literal raw} while consisdering
66
+
* Bind values provided by {@link MongoParameterAccessor} to placeholders in {@literal raw} while considering
66
67
* potential conversions and parameter types.
67
68
*
68
-
* @param raw
69
-
* @param accessor
70
-
* @param bindingContext
71
-
* @return {@literal null} if given {@literal raw} value is empty.
69
+
* @param raw can be {@literal null} or empty.
70
+
* @param accessor must not be {@literal null}.
71
+
* @param bindingContext must not be {@literal null}.
72
+
* @return {@literal null} if given {@code raw} value is empty.
0 commit comments