Skip to content
Snippets Groups Projects
Commit fbc1139a authored by Scott84's avatar Scott84
Browse files

Update GRXWriter.m

Corrected compiler warning for effectively pure virtual ObjC methods.
parent 7a94236d
No related branches found
No related tags found
No related merge requests found
...@@ -35,4 +35,14 @@ ...@@ -35,4 +35,14 @@
@implementation GRXWriter @implementation GRXWriter
- (void)startWithWriteable:(id<GRXWriteable>)writeable {
NSAssert(NO, @"Missing base implementation for %@", NSStringFromSelector(_cmd));
[self doesNotRecognizeSelector:_cmd];
}
- (void)finishWithError:(NSError *)errorOrNil {
NSAssert(NO, @"Missing base implementation for %@", NSStringFromSelector(_cmd));
[self doesNotRecognizeSelector:_cmd];
}
@end @end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment