File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ extern const NSInteger RACSignalErrorNoMatchingCase;
41
41
42
42
// / Do the given block on `error`. This should be used to inject side effects
43
43
// / into the signal.
44
- - (RACSignal<ValueType> *)doError : (void (^)(NSError * _Nonnull error))block RAC_WARN_UNUSED_RESULT;
44
+ - (RACSignal<ValueType> *)doError : (void (^)(NSError * _Nullable error))block RAC_WARN_UNUSED_RESULT;
45
45
46
46
// / Do the given block on `completed`. This should be used to inject side effects
47
47
// / into the signal.
@@ -385,7 +385,7 @@ _Pragma("clang diagnostic pop")
385
385
- (RACSignal *)takeUntilReplacement : (RACSignal *)replacement RAC_WARN_UNUSED_RESULT;
386
386
387
387
// / Subscribes to the returned signal when an error occurs.
388
- - (RACSignal *)catch : (RACSignal * (^)(NSError * _Nonnull error))catchBlock RAC_WARN_UNUSED_RESULT;
388
+ - (RACSignal *)catch : (RACSignal * (^)(NSError * _Nullable error))catchBlock RAC_WARN_UNUSED_RESULT;
389
389
390
390
// / Subscribes to the given signal when an error occurs.
391
391
- (RACSignal *)catchTo : (RACSignal *)signal RAC_WARN_UNUSED_RESULT;
You can’t perform that action at this time.
0 commit comments