Rename variable to unbreak the build

Reviewed By: javache

Differential Revision: D2625963

fb-gh-sync-id: 136013d7fa3b8eea322eea4ec45901376c30881d
This commit is contained in:
Tadeu Zagallo 2015-11-06 07:22:47 -08:00 committed by facebook-github-bot-5
parent de1c0169fc
commit 8dac41b7f0
1 changed files with 5 additions and 2 deletions

View File

@ -730,8 +730,11 @@ RCT_NOT_IMPLEMENTED(- (instancetype)initWithBundleURL:(__unused NSURL *)bundleUR
dispatch_block_t block = ^{
RCTProfileEndFlowEvent();
NSString *threadName = RCTCurrentThreadName();
RCTProfileBeginEvent(0, threadName, nil);
#if RCT_DEV
NSString *_threadName = RCTCurrentThreadName();
RCTProfileBeginEvent(0, _threadName, nil);
#endif
NSOrderedSet *calls = [buckets objectForKey:queue];
@autoreleasepool {