Commented out allocation/deallocation debugging code

This commit is contained in:
Wolfgang Sourdeau
2012-10-23 23:58:39 -04:00
parent 73781f25f6
commit d51bf22976
2 changed files with 14 additions and 14 deletions

View File

@@ -274,7 +274,7 @@ static Class NSDataK, NSStringK;
{
if ((self = [super init]))
{
[self logWithFormat: @"-init"];
// [self logWithFormat: @"-init"];
tableType = MAPISTORE_MESSAGE_TABLE;
handleId = -1;
@@ -307,21 +307,21 @@ static Class NSDataK, NSStringK;
return self;
}
- (id) retain
{
[self logWithFormat: @"-retain"];
return [super retain];
}
// - (id) retain
// {
// [self logWithFormat: @"-retain"];
// return [super retain];
// }
- (void) release
{
[self logWithFormat: @"-release"];
[super release];
}
// - (void) release
// {
// [self logWithFormat: @"-release"];
// [super release];
// }
- (void) dealloc
{
[self logWithFormat: @"-dealloc"];
// [self logWithFormat: @"-dealloc"];
if (columns)
NSZoneFree (NULL, columns);
[currentChild release];