Differences From Artifact [8917cda49a]:
- File
src/bridge/NSDictionary_OFDictionary.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 1428) [annotate] [blame] [check-ins using]
To Artifact [98dbb05ad2]:
- File
src/bridge/NSDictionary_OFDictionary.m
— part of check-in
[2f4e0df8be]
at
2017-10-17 00:33:37
on branch trunk
— Do not use implicit method return types
Instead, explicitly declare them, as OF_ASSUME_NONNULL_{BEGIN,END} does
not apply to implicit return types. This means that after this commit,
all init methods have a nonnull return type, as they should have. (user: js, size: 1442) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
19 20 21 22 23 24 25 | #import "NSBridging.h" #import "OFBridging.h" #import "OFOutOfRangeException.h" @implementation NSDictionary_OFDictionary | | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #import "NSBridging.h" #import "OFBridging.h" #import "OFOutOfRangeException.h" @implementation NSDictionary_OFDictionary - (instancetype)initWithOFDictionary: (OFDictionary *)dictionary { if ((self = [super init]) != nil) { @try { _dictionary = [dictionary retain]; } @catch (id e) { return nil; } |
︙ | ︙ |