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:
David Chisnall 2011-02-11 11:33:37 +00:00
parent acf11e142d
commit c8c35018b6

View file

@ -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];