aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2018-05-03 13:33:27 -0700
committerGravatar GitHub <noreply@github.com>2018-05-03 13:33:27 -0700
commitac04c3e6cf33b0b305836eb6d9e2545c81559f59 (patch)
tree5e51cc0b21343272db629f1d58429ff754c2fdc8 /Firestore/Source
parentfeaf9cb3cb89a218e8a032bbc5edde9980a73036 (diff)
Fix warning on FSTTargetMapping mentioned in #1210 (#1218)
method definition for 'filterUpdatesUsingExistingKeys:' not found There are no abstract methods in Objective-C so the base class needs an implementation.
Diffstat (limited to 'Firestore/Source')
-rw-r--r--Firestore/Source/Remote/FSTRemoteEvent.mm4
1 files changed, 4 insertions, 0 deletions
diff --git a/Firestore/Source/Remote/FSTRemoteEvent.mm b/Firestore/Source/Remote/FSTRemoteEvent.mm
index 4f7e344..718fd11 100644
--- a/Firestore/Source/Remote/FSTRemoteEvent.mm
+++ b/Firestore/Source/Remote/FSTRemoteEvent.mm
@@ -54,6 +54,10 @@ NS_ASSUME_NONNULL_BEGIN
@throw FSTAbstractMethodException(); // NOLINT
}
+- (void)filterUpdatesUsingExistingKeys:(FSTDocumentKeySet *)existingKeys {
+ @throw FSTAbstractMethodException(); // NOLINT
+}
+
@end
#pragma mark - FSTResetMapping