Skip to content

Commit

Permalink
add missing nullability
Browse files Browse the repository at this point in the history
TODO incorporate correctly
  • Loading branch information
lawrence-forooghian committed Jan 14, 2025
1 parent afd5afa commit 5287a37
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
#import <Ably/ARTRealtimeWrapperSDKProxy.h>

NS_ASSUME_NONNULL_BEGIN

@interface ARTRealtimeWrapperSDKProxy ()

- (instancetype)initWithRealtime:(ARTRealtime *)realtime
options:(ARTWrapperProxyOptions *)options NS_DESIGNATED_INITIALIZER;
- (instancetype)init NS_UNAVAILABLE;

@end

NS_ASSUME_NONNULL_END
4 changes: 4 additions & 0 deletions Source/include/Ably/ARTRealtimeWrapperSDKProxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

// TODO exclude from docs

NS_ASSUME_NONNULL_BEGIN

NS_SWIFT_SENDABLE
@interface ARTRealtimeWrapperSDKProxy : NSObject <ARTRealtimeProtocol>

Expand All @@ -37,3 +39,5 @@ NS_SWIFT_SENDABLE
#endif

@end

NS_ASSUME_NONNULL_END

0 comments on commit 5287a37

Please sign in to comment.