Commented out allocation/deallocation debugging code

pull/7/head
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

@ -77,7 +77,7 @@ static Class MAPIStoreFolderK;
isNew = NO;
}
[self logWithFormat: @"-init"];
// [self logWithFormat: @"-init"];
return self;
}
@ -95,7 +95,7 @@ static Class MAPIStoreFolderK;
- (void) dealloc
{
[self logWithFormat: @"-dealloc"];
// [self logWithFormat: @"-dealloc"];
[sogoObject release];
[super dealloc];
}

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];