Skip to content

Commit

Permalink
Fix warning on FSTTargetMapping mentioned in #1210 (#1218)
Browse files Browse the repository at this point in the history
method definition for 'filterUpdatesUsingExistingKeys:' not found

There are no abstract methods in Objective-C so the base class needs an
implementation.
  • Loading branch information
wilhuff authored May 3, 2018
1 parent feaf9cb commit ac04c3e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Firestore/Source/Remote/FSTRemoteEvent.mm
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ - (void)removeDocumentKey:(const DocumentKey &)documentKey {
@throw FSTAbstractMethodException(); // NOLINT
}

- (void)filterUpdatesUsingExistingKeys:(FSTDocumentKeySet *)existingKeys {
@throw FSTAbstractMethodException(); // NOLINT
}

@end

#pragma mark - FSTResetMapping
Expand Down

0 comments on commit ac04c3e

Please sign in to comment.