Commented out allocation/deallocation debugging code

maint-2.0.2
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; isNew = NO;
} }
[self logWithFormat: @"-init"]; // [self logWithFormat: @"-init"];
return self; return self;
} }
@ -95,7 +95,7 @@ static Class MAPIStoreFolderK;
- (void) dealloc - (void) dealloc
{ {
[self logWithFormat: @"-dealloc"]; // [self logWithFormat: @"-dealloc"];
[sogoObject release]; [sogoObject release];
[super dealloc]; [super dealloc];
} }

View File

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