mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Removed stuff saying we conform to the NSCoding and NSCopying protocols (we
shouldn't) and removed the ([-copyWithZone:]) and ([-mutableCopyWithZone:]) methods - which shouldn't be there. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2839 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
26c4fbd06a
commit
e2f714418f
1 changed files with 3 additions and 5 deletions
|
@ -61,13 +61,11 @@
|
|||
@end
|
||||
|
||||
@protocol NSCopying
|
||||
- copyWithZone: (NSZone *)zone;
|
||||
- copy;
|
||||
- (id) copyWithZone: (NSZone *)zone;
|
||||
@end
|
||||
|
||||
@protocol NSMutableCopying
|
||||
- mutableCopyWithZone:(NSZone *)zone;
|
||||
- mutableCopy;
|
||||
- (id) mutableCopyWithZone: (NSZone *)zone;
|
||||
@end
|
||||
|
||||
@protocol NSCoding
|
||||
|
@ -76,7 +74,7 @@
|
|||
@end
|
||||
|
||||
|
||||
@interface NSObject <NSObject, NSCoding, NSCopying>
|
||||
@interface NSObject <NSObject>
|
||||
{
|
||||
Class isa;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue