remove debug logs

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@38618 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2015-06-11 21:49:30 +00:00
parent be1775dc44
commit 6f7585f7a4
2 changed files with 7 additions and 4 deletions

View file

@ -63,7 +63,7 @@
- (void)addClassToArray
{
// NSLog(@"OCCH: class: %@", class);
NSLog(@"OCCH: class: %@", class);
if ([class length])
{
NSDictionary *dict;
@ -173,8 +173,11 @@
[super spaceAndNewLine:element];
if ((element == 0x0A) || (element == 0x0D))
if ((element == 0x0A) || (element == 0x0D) || (element == 0x04))
{
// NSLog(@"Newline");
// if(element == 0x04)
// NSLog(@"and EOF");
newline = YES;
}
@ -199,7 +202,7 @@
// NSLog(@"keyword: %@", keyword);
if ([keyword isEqualToString:@"end"])
{
// NSLog(@"@end reached");
NSLog(@"@end reached");
[self addClassToArray];
step = ClassNone;
}

View file

@ -38,7 +38,7 @@
{
if (_commentType == SingleLineComment)
{
if ((element == 0x0A) || (element == 0x0D))
if ((element == 0x0A) || (element == 0x0D) || (element == 0x04))
{
_commentType = NoComment;
}