mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Remove redundant dictionary lookup (result never used) in AGSParser.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32056 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
acf11e142d
commit
c8c35018b6
1 changed files with 1 additions and 1 deletions
|
@ -263,7 +263,7 @@ in the returned dictionary. */
|
|||
- (void) parseArgsInto: (NSMutableDictionary*)d
|
||||
{
|
||||
BOOL wasInArgList = inArgList;
|
||||
NSMutableArray *a = [d objectForKey: @"Args"];
|
||||
NSMutableArray *a = nil;
|
||||
|
||||
NSAssert([d objectForKey: @"Args"] == nil, NSInternalInconsistencyException);
|
||||
a = [[NSMutableArray alloc] initWithCapacity: 4];
|
||||
|
|
Loading…
Reference in a new issue