Update changelog, cleanup NSLogs

This commit is contained in:
Gregory John Casamento 2024-12-25 05:43:01 -05:00
parent 8c821843d1
commit 0cc8b8bcd0
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2024-12-25 Gregory John Casamento <greg.casamento@gmail.com>
* GormObjCHeaderParser/OCClass.m: Improve parsing
to allow getting information from .m files/categories.
2023-01-15 Gregory John Casamento <greg.casamento@gmail.com>
* ANNOUNCE

View file

@ -152,7 +152,7 @@
// get the interface line... look ahead...
[self _strip];
NSLog(@"_classString = %@", _classString);
NSDebugLog(@"_classString = %@", _classString);
scanner = [NSScanner scannerWithString: _classString];
if (lookAhead(_classString, @"@implementation"))
{
@ -162,7 +162,7 @@
[scanner scanUpToCharactersFromSet: wsnl intoString: &cn];
_className = [cn stringByTrimmingCharactersInSet: wsnl];
RETAIN(_className);
NSLog(@"className = %@", _className);
NSDebugLog(@"_className = %@", _className);
}
else
{
@ -243,7 +243,7 @@
[cs scanUpToCharactersFromSet: wsnl intoString: &cn];
_className = [cn stringByTrimmingCharactersInSet: wsnl];
RETAIN(_className);
NSLog(@"className = %@", _className);
NSDebugLog(@"_className = %@", _className);
}
// put the methods into a string...