소스 검색

Fix xcodebuild error from incorrect method resolution

Ryan Olson 10 년 전
부모
커밋
d1c1aa0a26
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.m

+ 1 - 1
Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.m

@@ -52,7 +52,7 @@
     
     NSError *error = nil;
     id configuration = [[configurationClass alloc] init];
-    [configuration setPath:self.path];
+    [(RLMRealmConfiguration *)configuration setPath:self.path];
     self.realm = [realmClass realmWithConfiguration:configuration error:&error];
     return (error == nil);
 }