mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-23 06:20:47 +00:00
Update changelog, cleanup NSLogs
This commit is contained in:
parent
8c821843d1
commit
0cc8b8bcd0
2 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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...
|
||||
|
|
Loading…
Reference in a new issue