([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:
Andrew McCallum 1996-01-28 02:18:13 +00:00
parent 3c4c4029ca
commit 0769bbcdca

View file

@ -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];
}