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
Copy file name to clipboardExpand all lines: spring-web/src/testFixtures/java/org/springframework/web/testfixture/http/server/reactive/MockServerHttpRequest.java
-28Lines changed: 0 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -282,15 +282,6 @@ public interface BaseBuilder<B extends BaseBuilder<B>> {
282
282
/**
283
283
* Add the given header values.
284
284
* @param headers the header values
285
-
* @deprecated in favor of {@link #headers(HttpHeaders)}
286
-
*/
287
-
@Deprecated(since = "7.0", forRemoval = true)
288
-
Bheaders(MultiValueMap<String, String> headers);
289
-
290
-
/**
291
-
* Add the given header values.
292
-
* @param headers the header values
293
-
* @since 7.0
294
285
*/
295
286
Bheaders(HttpHeadersheaders);
296
287
@@ -332,12 +323,6 @@ public interface BaseBuilder<B extends BaseBuilder<B>> {
332
323
*/
333
324
BifUnmodifiedSince(longifUnmodifiedSince);
334
325
335
-
/**
336
-
* Set the values of the {@code If-Match} header.
337
-
* @param ifMatches the new value of the header
338
-
*/
339
-
BifMatch(String... ifMatches);
340
-
341
326
/**
342
327
* Set the values of the {@code If-None-Match} header.
343
328
* @param ifNoneMatches the new value of the header
Copy file name to clipboardExpand all lines: spring-webflux/src/test/java/org/springframework/web/reactive/function/server/DefaultServerRequestTests.java
0 commit comments