Fix misusage of NSUInteger * in RCTImageStoreManager

Summary:
I would like to believe it's some black magic code but no it's just a typo.
Closes https://github.com/facebook/react-native/pull/8712

Differential Revision: D3550809

fbshipit-source-id: 00a7ba1cbcd36e29af44cdefd5fc1148d11d26e3
This commit is contained in:
Jesse Luo 2016-07-12 13:54:16 -07:00 committed by Facebook Github Bot 7
parent a74780e5a0
commit f317b9f28f

View File

@ -23,7 +23,7 @@ static NSString *const RCTImageStoreURLScheme = @"rct-image-store";
@implementation RCTImageStoreManager
{
NSMutableDictionary<NSString *, NSData *> *_store;
NSUInteger *_id;
NSUInteger _id;
}
@synthesize methodQueue = _methodQueue;