mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 08:26:27 +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
918f664f8b
commit
234132faa3
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