mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 10:00:48 +00:00
comment out some logs
This commit is contained in:
parent
a26fbaa6c1
commit
67381ab3cc
1 changed files with 4 additions and 4 deletions
|
@ -187,7 +187,7 @@
|
||||||
NSString *string = [scanner string];
|
NSString *string = [scanner string];
|
||||||
BOOL elementEnd;
|
BOOL elementEnd;
|
||||||
|
|
||||||
NSLog(@"parseArray in: %@", [string substringFromIndex: [scanner scanLocation]]);
|
// NSLog(@"parseArray in: %@", [string substringFromIndex: [scanner scanLocation]]);
|
||||||
mArray = [[NSMutableArray alloc] init];
|
mArray = [[NSMutableArray alloc] init];
|
||||||
|
|
||||||
// we chomp up the first opening [
|
// we chomp up the first opening [
|
||||||
|
@ -217,7 +217,7 @@
|
||||||
[scanner scanString: @"," intoString: NULL];
|
[scanner scanString: @"," intoString: NULL];
|
||||||
}
|
}
|
||||||
|
|
||||||
NSLog(@"Array Element: %@", value);
|
// NSLog(@"Array Element: %@", value);
|
||||||
if (value)
|
if (value)
|
||||||
{
|
{
|
||||||
[mArray addObject: value];
|
[mArray addObject: value];
|
||||||
|
@ -238,7 +238,7 @@
|
||||||
NSString *string = [scanner string];
|
NSString *string = [scanner string];
|
||||||
BOOL elementEnd;
|
BOOL elementEnd;
|
||||||
|
|
||||||
NSLog(@"scanning KV: %@", [[scanner string] substringFromIndex:[scanner scanLocation]]);
|
// NSLog(@"scanning KV: %@", [[scanner string] substringFromIndex:[scanner scanLocation]]);
|
||||||
mdict = [[NSMutableDictionary alloc] init];
|
mdict = [[NSMutableDictionary alloc] init];
|
||||||
|
|
||||||
value = nil;
|
value = nil;
|
||||||
|
@ -252,7 +252,7 @@
|
||||||
{
|
{
|
||||||
[scanner scanUpToString: @"=" intoString: &key];
|
[scanner scanUpToString: @"=" intoString: &key];
|
||||||
[scanner scanString: @"=" intoString: NULL];
|
[scanner scanString: @"=" intoString: NULL];
|
||||||
NSLog(@"KV key found: %@", key);
|
// NSLog(@"KV key found: %@", key);
|
||||||
if ([string characterAtIndex:[scanner scanLocation]] == '\"')
|
if ([string characterAtIndex:[scanner scanLocation]] == '\"')
|
||||||
{
|
{
|
||||||
value = [self parseString: scanner];
|
value = [self parseString: scanner];
|
||||||
|
|
Loading…
Reference in a new issue