File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -735,7 +735,8 @@ +(type)type : (id)json \
735
735
static NSString *const RCTColorSuffix = @" Color" ;
736
736
NSMutableDictionary <NSString *, NSDictionary *> *aliases = [NSMutableDictionary new ];
737
737
for (NSString *objcSelector in map) {
738
- RCTAssert ([objcSelector hasSuffix: RCTColorSuffix], @" A selector in the color map did not end with the suffix Color." );
738
+ RCTAssert (
739
+ [objcSelector hasSuffix: RCTColorSuffix], @" A selector in the color map did not end with the suffix Color." );
739
740
NSMutableDictionary *entry = [map[objcSelector] mutableCopy ];
740
741
RCTAssert ([entry objectForKey: RCTSelector] == nil , @" Entry should not already have an RCTSelector" );
741
742
NSString *swiftSelector = [objcSelector substringToIndex: [objcSelector length ] - [RCTColorSuffix length ]];
You can’t perform that action at this time.
0 commit comments