Skip to content

Commit ac570ab

Browse files
committed
disable documentation warnings, fix some docs issues
1 parent 7641603 commit ac570ab

File tree

2 files changed

+5
-18
lines changed

2 files changed

+5
-18
lines changed

FirebaseDatabaseUI/FirebaseIndexArray.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ didFailLoadWithError:(NSError *)error;
7171
* Delegate method which is called whenever an object is changed in a
7272
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
7373
* this corresponds to a @c FIRDataEventTypeChildChanged event being raised.
74-
* @param object The database reference that changed in the array
74+
* @param ref The database reference that changed in the array
7575
* @param index The index the reference was changed at
7676
*/
7777
- (void)array:(FirebaseIndexArray *)array didChangeReference:(FIRDatabaseReference *)ref atIndex:(NSUInteger)index;
@@ -80,7 +80,7 @@ didFailLoadWithError:(NSError *)error;
8080
* Delegate method which is called whenever an object is removed from a
8181
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
8282
* this corresponds to a @c FIRDataEventTypeChildRemoved event being raised.
83-
* @param object The database reference removed from the array
83+
* @param ref The database reference removed from the array
8484
* @param index The index the reference was removed at
8585
*/
8686
- (void)array:(FirebaseIndexArray *)array didRemoveReference:(FIRDatabaseReference *)ref atIndex:(NSUInteger)index;
@@ -89,7 +89,7 @@ didFailLoadWithError:(NSError *)error;
8989
* Delegate method which is called whenever an object is moved within a
9090
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
9191
* this corresponds to a @c FIRDataEventTypeChildMoved event being raised.
92-
* @param object The database reference that has moved locations
92+
* @param ref The database reference that has moved locations
9393
* @param fromIndex The index the reference is being moved from
9494
* @param toIndex The index the reference is being moved to
9595
*/

FirebaseUI.xcodeproj/project.pbxproj

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -497,8 +497,6 @@
497497
C329B15B1DA8694A00059A13 /* FirebaseUISampleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FirebaseUISampleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
498498
C329B15F1DA8694B00059A13 /* FirebaseUISampleUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FirebaseUISampleUITests.m; sourceTree = "<group>"; };
499499
C329B1611DA8694B00059A13 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
500-
C329B1871DAC3A9600059A13 /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCore.framework; path = Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework; sourceTree = "<group>"; };
501-
C329B1AB1DAC49EF00059A13 /* FirebaseAuthUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAuthUI.framework; path = FirebaseUIFrameworks/FirebaseAuthUI/Frameworks/FirebaseAuthUI.framework; sourceTree = "<group>"; };
502500
C380A7D01D89ECF1005C031D /* ic_twitter.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ic_twitter.png; sourceTree = "<group>"; };
503501
C380A7D11D89ECF1005C031D /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
504502
C380A7D21D89ECF1005C031D /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
@@ -1061,17 +1059,6 @@
10611059
path = en.lproj;
10621060
sourceTree = "<group>";
10631061
};
1064-
C6755E8A1320A2BECE081E94 /* Frameworks */ = {
1065-
isa = PBXGroup;
1066-
children = (
1067-
C329B1AB1DAC49EF00059A13 /* FirebaseAuthUI.framework */,
1068-
C329B1871DAC3A9600059A13 /* FirebaseCore.framework */,
1069-
8DB06C5D1D89D18B00F0AAD3 /* libPods-FirebaseAuthUITests.a */,
1070-
8D9861121D81EEE2007D3FD3 /* libPods-FirebaseDatabaseUI.a */,
1071-
);
1072-
name = Frameworks;
1073-
sourceTree = "<group>";
1074-
};
10751062
/* End PBXGroup section */
10761063

10771064
/* Begin PBXHeadersBuildPhase section */
@@ -2185,7 +2172,7 @@
21852172
CLANG_WARN_BOOL_CONVERSION = YES;
21862173
CLANG_WARN_CONSTANT_CONVERSION = YES;
21872174
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
2188-
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
2175+
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
21892176
CLANG_WARN_EMPTY_BODY = YES;
21902177
CLANG_WARN_ENUM_CONVERSION = YES;
21912178
CLANG_WARN_INFINITE_RECURSION = YES;
@@ -2241,7 +2228,7 @@
22412228
CLANG_WARN_BOOL_CONVERSION = YES;
22422229
CLANG_WARN_CONSTANT_CONVERSION = YES;
22432230
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
2244-
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
2231+
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
22452232
CLANG_WARN_EMPTY_BODY = YES;
22462233
CLANG_WARN_ENUM_CONVERSION = YES;
22472234
CLANG_WARN_INFINITE_RECURSION = YES;

0 commit comments

Comments
 (0)