Commit 5a71bde7 authored by Valeriy Van's avatar Valeriy Van

Changes existential NSStringFromSelector(_cmd) for straightforward __FUCNTION__

parent 517be4bf
...@@ -379,13 +379,13 @@ ...@@ -379,13 +379,13 @@
- (void)createCaptureOutput; - (void)createCaptureOutput;
{ {
[NSException raise:NSInternalInconsistencyException [NSException raise:NSInternalInconsistencyException
format:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]; format:@"You must override %s in a subclass", __FUNCTION__];
} }
- (void)createCustomVideoPreview; - (void)createCustomVideoPreview;
{ {
[NSException raise:NSInternalInconsistencyException [NSException raise:NSInternalInconsistencyException
format:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]; format:@"You must override %s in a subclass", __FUNCTION__];
} }
- (void)updateOrientation; - (void)updateOrientation;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment