Skip to content

Commit bf5f3c6

Browse files
generatedunixname89002005287564facebook-github-bot
generatedunixname89002005287564
authored andcommitted
Daily arc lint --take CLANGFORMAT
Reviewed By: zertosh Differential Revision: D21175893 fbshipit-source-id: 101734c1b968ce241a15648efdcaeabbd789952d
1 parent 2ad827b commit bf5f3c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

React/Base/RCTConvert.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,8 @@ +(type)type : (id)json \
735735
static NSString *const RCTColorSuffix = @"Color";
736736
NSMutableDictionary<NSString *, NSDictionary *> *aliases = [NSMutableDictionary new];
737737
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.");
739740
NSMutableDictionary *entry = [map[objcSelector] mutableCopy];
740741
RCTAssert([entry objectForKey:RCTSelector] == nil, @"Entry should not already have an RCTSelector");
741742
NSString *swiftSelector = [objcSelector substringToIndex:[objcSelector length] - [RCTColorSuffix length]];

0 commit comments

Comments
 (0)