Differences From Artifact [c665c234c4]:
- File src/OFAutoreleasePool.m — part of check-in [4c6d6c56ac] at 2009-05-15 22:59:30 on branch trunk — As we memset our ivars to 0, get rid of some useless ivar inits. (user: js, size: 2724) [annotate] [blame] [check-ins using]
To Artifact [81f708f0c4]:
- File src/OFAutoreleasePool.m — part of check-in [163409967e] at 2009-05-18 17:50:35 on branch trunk — Split OFArray into OFArray and OFMutableArray. (user: js, size: 2731) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
91 92 93 94 95 96 97 |
[super dealloc];
}
- addToPool: (OFObject*)obj
{
if (objects == nil)
| | | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
[super dealloc];
}
- addToPool: (OFObject*)obj
{
if (objects == nil)
objects = [[OFMutableArray alloc] init];
[objects add: obj];
[obj release];
return self;
}
|
| ︙ | ︙ |