File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
RxSwift/Observables/Implementations Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ final class ShareReplay1<Element>
80
80
_synchronized_on ( event) . on ( event)
81
81
}
82
82
83
- func _synchronized_on( _ event: Event < E > ) -> Bag < AnyObserver < Element > > {
83
+ func _synchronized_on( event: Event < E > ) -> Bag < AnyObserver < Element > > {
84
84
_lock. lock ( ) ; defer { _lock. unlock ( ) }
85
85
if _stopped {
86
86
return Bag ( )
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ final class ShareReplay1WhileConnected<Element>
74
74
_synchronized_on ( event) . on ( event)
75
75
}
76
76
77
- func _synchronized_on( _ event: Event < E > ) -> Bag < AnyObserver < Element > > {
77
+ func _synchronized_on( event: Event < E > ) -> Bag < AnyObserver < Element > > {
78
78
_lock. lock ( ) ; defer { _lock. unlock ( ) }
79
79
switch event {
80
80
case . Next( let element) :
You can’t perform that action at this time.
0 commit comments