Skip to content

Commit

Permalink
Update ios/Classes/codec/AblyFlutterReader.m
Browse files Browse the repository at this point in the history
[cleanup] Adding NS_ASSUME_NONNULL_BEGIN and END as per the comment

#13 (comment)

Co-authored-by: Quintin <quintin@ably.io>
  • Loading branch information
tiholic and Quintin authored Jun 4, 2020
1 parent 3dbf717 commit 8df3927
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ios/Classes/codec/AblyFlutterReader.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ static ARTLogLevel _logLevel(NSNumber *const number) {
return ARTLogLevelWarn;
}

typedef id (^AblyCodecDecoder)(NSDictionary * jsonDict);
NS_ASSUME_NONNULL_BEGIN

typedef id (^AblyCodecDecoder)(NSDictionary * dictionary);

NS_ASSUME_NONNULL_END

@implementation AblyFlutterReader

Expand Down

0 comments on commit 8df3927

Please sign in to comment.