Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin King committed Jul 29, 2015
1 parent 5545e1b commit 3454df7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions VIMVideoPlayer/VIMVideoPlayerView.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,27 @@ - (void)dealloc
[self detachPlayer];
}

- (instancetype)initWithFrame:(CGRect)aRect
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:aRect];
if (self) {
self = [super initWithFrame:frame];

if (self)
{
[self commonInit];
}

return self;
}

- (id)initWithCoder:(NSCoder *)decoder
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:decoder];
if (self) {
self = [super initWithCoder:aDecoder];

if (self)
{
[self commonInit];
}

return self;
}

Expand Down

0 comments on commit 3454df7

Please sign in to comment.