Просмотр исходного кода

Fix getter override type mismatch.

Oops! Caught by running with -Weverything.
Ryan Olson лет назад: 12
Родитель
Сommit
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
 @implementation FLEXDictionaryExplorerViewController
 
 
-- (NSArray *)dictionary
+- (NSDictionary *)dictionary
 {
 {
     return [self.object isKindOfClass:[NSDictionary class]] ? self.object : nil;
     return [self.object isKindOfClass:[NSDictionary class]] ? self.object : nil;
 }
 }