mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +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
aad1d76c56
commit
9e5b4ca2b0
1 changed files with 3 additions and 5 deletions
|
@ -61,13 +61,11 @@
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@protocol NSCopying
|
@protocol NSCopying
|
||||||
- copyWithZone: (NSZone *)zone;
|
- (id) copyWithZone: (NSZone *)zone;
|
||||||
- copy;
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@protocol NSMutableCopying
|
@protocol NSMutableCopying
|
||||||
- mutableCopyWithZone:(NSZone *)zone;
|
- (id) mutableCopyWithZone: (NSZone *)zone;
|
||||||
- mutableCopy;
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@protocol NSCoding
|
@protocol NSCoding
|
||||||
|
@ -76,7 +74,7 @@
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
||||||
@interface NSObject <NSObject, NSCoding, NSCopying>
|
@interface NSObject <NSObject>
|
||||||
{
|
{
|
||||||
Class isa;
|
Class isa;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue