Differences From Artifact [917221d23f]:
- File src/OFMutableSet.m — part of check-in [eb791d09d1] at 2011-07-26 21:42:34 on branch trunk — Add OFCountedSet. (user: js, size: 1861) [annotate] [blame] [check-ins using]
To Artifact [54d40938db]:
- File src/OFMutableSet.m — part of check-in [927dbf6e7d] at 2011-08-07 16:57:49 on branch trunk — Add -[makeImmutable] to all mutable classes and use it. (user: js, size: 1910) [annotate] [blame] [check-ins using]
︙ | |||
75 76 77 78 79 80 81 82 | 75 76 77 78 79 80 81 82 83 84 85 86 87 | + + + + + | id object; while ((object = [enumerator nextObject]) != nil) [self addObject: object]; [pool release]; } - (void)makeImmutable { isa = [OFSet class]; } @end |