mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
([Coder -closeCoding]): Method renamed from -closeCoder.
([Coder +encodeRootObject:withName:toStream:]): Make -closeCoding name change. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@885 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3c4c4029ca
commit
0769bbcdca
1 changed files with 2 additions and 2 deletions
|
@ -289,7 +289,7 @@ my_object_is_class(id object)
|
|||
{
|
||||
id c = [[Coder alloc] initForWritingToStream: stream];
|
||||
[c encodeRootObject: anObject withName: name];
|
||||
[c closeCoder];
|
||||
[c closeCoding];
|
||||
[c release];
|
||||
return YES;
|
||||
}
|
||||
|
@ -1247,7 +1247,7 @@ exc_return_null(arglist_t f)
|
|||
|
||||
/* We must separate the idea of "closing" a coder and "deallocating"
|
||||
a coder because of delays in deallocation due to -autorelease. */
|
||||
- (void) closeCoder
|
||||
- (void) closeCoding
|
||||
{
|
||||
[[cstream stream] closeStream];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue