File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
spring-web/src/main/java/org/springframework/http/server/reactive Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 21
21
import org .reactivestreams .Publisher ;
22
22
import org .reactivestreams .Subscriber ;
23
23
import org .reactivestreams .Subscription ;
24
+ import reactor .core .CoreSubscriber ;
24
25
import reactor .core .Scannable ;
25
26
import reactor .core .publisher .Flux ;
26
27
import reactor .core .publisher .Mono ;
27
28
import reactor .core .publisher .Operators ;
28
- import reactor .util .context .Context ;
29
29
30
30
import org .springframework .lang .Nullable ;
31
31
import org .springframework .util .Assert ;
@@ -69,8 +69,8 @@ public Object scanUnsafe(Attr key) {
69
69
}
70
70
71
71
@ Override
72
- public void subscribe (Subscriber <? super Void > s , Context ctx ) {
73
- this .source .subscribe (new WriteWithBarrier (s ), ctx );
72
+ public void subscribe (CoreSubscriber <? super Void > actual ) {
73
+ this .source .subscribe (new WriteWithBarrier (actual ) );
74
74
}
75
75
76
76
You can’t perform that action at this time.
0 commit comments