mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
(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:
parent
dbdd04782f
commit
aae20e5bfe
2 changed files with 2 additions and 4 deletions
|
@ -26,11 +26,10 @@
|
|||
|
||||
@implementation Queue
|
||||
|
||||
+ initialize
|
||||
+ (void) initialize
|
||||
{
|
||||
if (self == [Queue class])
|
||||
[self setVersion:0]; /* beta release */
|
||||
return self;
|
||||
}
|
||||
|
||||
- enqueueElement: (elt)newElement
|
||||
|
|
|
@ -26,11 +26,10 @@
|
|||
|
||||
@implementation Stack
|
||||
|
||||
+ initialize
|
||||
+ (void) initialize
|
||||
{
|
||||
if (self == [Stack class])
|
||||
[self setVersion:0]; /* beta release */
|
||||
return self;
|
||||
}
|
||||
|
||||
- pushElement: (elt)anElement
|
||||
|
|
Loading…
Reference in a new issue