Przeglądaj źródła

Fix getter override type mismatch.

Oops! Caught by running with -Weverything.
Ryan Olson 12 lat temu
rodzic
commit
7b60fca9bd

+ 1 - 1
Classes/Object Explorers/FLEXDictionaryExplorerViewController.m

@@ -18,7 +18,7 @@
 
 @implementation FLEXDictionaryExplorerViewController
 
-- (NSArray *)dictionary
+- (NSDictionary *)dictionary
 {
     return [self.object isKindOfClass:[NSDictionary class]] ? self.object : nil;
 }