Skip to content

Commit

Permalink
Fix Javadoc since for MockRestRequestMatchers queryParam() and header…
Browse files Browse the repository at this point in the history
…() (#29986)

See gh-29953
See gh-29964
  • Loading branch information
izeye authored and sbrannen committed Feb 22, 2023
1 parent 4993b10 commit 2b4b947
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public static RequestMatcher queryParam(String name, String... expectedValues) {
* ({@link Matchers#contains(Matcher[])}, and more.
* @param name the name of the query parameter to consider
* @param matcher the matcher to apply to the whole list of values for that header
* @since 6.0.5
* @since 5.3.26
*/
public static RequestMatcher queryParam(String name, Matcher<? super List<String>> matcher) {
return request -> {
Expand Down Expand Up @@ -238,7 +238,7 @@ public static RequestMatcher header(String name, String... expectedValues) {
* ({@link Matchers#contains(Matcher[])}, and more.
* @param name the name of the request header to consider
* @param matcher the matcher to apply to the whole list of values for that header
* @since 6.0.5
* @since 5.3.26
*/
public static RequestMatcher header(String name, Matcher<? super List<String>> matcher) {
return request -> {
Expand Down

0 comments on commit 2b4b947

Please sign in to comment.