ソースを参照

Fix getter override type mismatch.

Oops! Caught by running with -Weverything.
Ryan Olson 12 年 前
コミット
7b60fca9bd
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      Classes/Object Explorers/FLEXDictionaryExplorerViewController.m

+ 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;
 }