File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5959
6060@interface EGOCache ()
6161- (void )removeItemFromCache : (NSString *)key ;
62- - (void )performDiskWriteOperation : (NSInvocation *)invoction ;
62+ - (void )performDiskWriteOperation : (NSInvocation *)invocation ;
6363- (void )saveCacheDictionary ;
6464@end
6565
@@ -310,8 +310,8 @@ - (void)setObject:(id<NSCoding>)anObject forKey:(NSString*)key withTimeoutInterv
310310#pragma mark -
311311#pragma mark Disk writing operations
312312
313- - (void )performDiskWriteOperation : (NSInvocation *)invoction {
314- NSInvocationOperation *operation = [[NSInvocationOperation alloc ] initWithInvocation: invoction ];
313+ - (void )performDiskWriteOperation : (NSInvocation *)invocation {
314+ NSInvocationOperation *operation = [[NSInvocationOperation alloc ] initWithInvocation: invocation ];
315315 [diskOperationQueue addOperation: operation];
316316#if EGO_NO_ARC
317317 [operation release ];
You can’t perform that action at this time.
0 commit comments