mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-14 06:31:31 +00:00
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:
parent
be1775dc44
commit
6f7585f7a4
2 changed files with 7 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
{
|
||||
if (_commentType == SingleLineComment)
|
||||
{
|
||||
if ((element == 0x0A) || (element == 0x0D))
|
||||
if ((element == 0x0A) || (element == 0x0D) || (element == 0x04))
|
||||
{
|
||||
_commentType = NoComment;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue