Skip to content

Commit e1da278

Browse files
authored
Merge pull request ReactiveCocoa#25 from barakwei/feature/fix-nullability
RACSubject: Fix nullability annotation to match header.
2 parents fb1551a + ead74fe commit e1da278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReactiveObjC/RACSubject.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ - (void)enumerateSubscribersUsingBlock:(void (^)(id<RACSubscriber> subscriber))b
9090

9191
#pragma mark RACSubscriber
9292

93-
- (void)sendNext:(id)value {
93+
- (void)sendNext:(nullable id)value {
9494
[self enumerateSubscribersUsingBlock:^(id<RACSubscriber> subscriber) {
9595
[subscriber sendNext:value];
9696
}];

0 commit comments

Comments
 (0)