(initialize): Return void.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@194 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-03-23 04:04:10 +00:00
parent 918f664f8b
commit 234132faa3
2 changed files with 2 additions and 4 deletions

View file

@ -26,11 +26,10 @@
@implementation Queue
+ initialize
+ (void) initialize
{
if (self == [Queue class])
[self setVersion:0]; /* beta release */
return self;
}
- enqueueElement: (elt)newElement

View file

@ -26,11 +26,10 @@
@implementation Stack
+ initialize
+ (void) initialize
{
if (self == [Stack class])
[self setVersion:0]; /* beta release */
return self;
}
- pushElement: (elt)anElement