diff options
author | dynaflash <[email protected]> | 2011-06-14 20:54:10 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2011-06-14 20:54:10 +0000 |
commit | 3db1924b1f1cca8d6c949c2e2142fdc2861d018f (patch) | |
tree | 4aca946eb3fec2017aa2992c07459767c0263a76 /macosx/HBAudio.m | |
parent | 5cda40098c43e925c711679c8d523b6ad420c9e6 (diff) |
MacGui: Don't call "return" at the end of a void function.. .. Redux!
- As Per https://reviews.handbrake.fr/r/122/
- Thanks blindjimmy for the patche(s).
- Borked commit notes courtesy of me.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4058 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudio.m')
-rw-r--r-- | macosx/HBAudio.m | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/macosx/HBAudio.m b/macosx/HBAudio.m index f40f9e31b..706e8303b 100644 --- a/macosx/HBAudio.m +++ b/macosx/HBAudio.m @@ -198,7 +198,6 @@ static NSMutableArray *masterBitRateArray = nil; [pool release]; } - return; } // Ensure the list of codecs is accurate @@ -268,8 +267,6 @@ static NSMutableArray *masterBitRateArray = nil; [self setCodec: nil]; } } - - return; } - (void) updateMixdowns: (BOOL) shouldSetDefault @@ -337,8 +334,6 @@ static NSMutableArray *masterBitRateArray = nil; { [self setMixdown: [permittedMixdowns lastObject]]; } - - return; } - (void) updateBitRates: (BOOL) shouldSetDefault @@ -425,8 +420,6 @@ static NSMutableArray *masterBitRateArray = nil; { [self setBitRate: [permittedBitRates lastObject]]; } - - return; } - (id) init @@ -485,7 +478,6 @@ static NSMutableArray *masterBitRateArray = nil; [self setMixdowns: nil]; [self setBitRates: nil]; [super dealloc]; - return; } #pragma mark - @@ -532,7 +524,6 @@ static NSMutableArray *masterBitRateArray = nil; { [self updateBitRates: NO]; } - return; } #pragma mark - @@ -566,7 +557,6 @@ static NSMutableArray *masterBitRateArray = nil; { [self setMixdown: dict]; } - return; } - (void) setSampleRateFromName: (NSString *) aValue @@ -578,7 +568,6 @@ static NSMutableArray *masterBitRateArray = nil; { [self setSampleRate: dict]; } - return; } - (void) setBitRateFromName: (NSString *) aValue @@ -590,7 +579,6 @@ static NSMutableArray *masterBitRateArray = nil; { [self setBitRate: dict]; } - return; } |