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@113 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c520d43b38
commit
2521de98ff
4 changed files with 4 additions and 8 deletions
|
@ -27,11 +27,10 @@
|
|||
|
||||
@implementation GapArray
|
||||
|
||||
+ initialize
|
||||
+ (void) initialize
|
||||
{
|
||||
if (self == [GapArray class])
|
||||
[self setVersion:0]; /* beta release */
|
||||
return self;
|
||||
}
|
||||
|
||||
/* This is the designated initializer of this class */
|
||||
|
|
|
@ -27,11 +27,10 @@
|
|||
|
||||
@implementation LinkedList
|
||||
|
||||
+ initialize
|
||||
+ (void) initialize
|
||||
{
|
||||
if (self == [LinkedList class])
|
||||
[self setVersion:0]; /* beta release */
|
||||
return self;
|
||||
}
|
||||
|
||||
/* This is the designated initializer of this class */
|
||||
|
|
|
@ -26,11 +26,10 @@
|
|||
|
||||
@implementation LinkedListEltNode
|
||||
|
||||
+ initialize
|
||||
+ (void) initialize
|
||||
{
|
||||
if (self == [LinkedListEltNode class])
|
||||
[self setVersion:0]; /* beta release */
|
||||
return self;
|
||||
}
|
||||
|
||||
#include <objects/EltNode-m>
|
||||
|
|
|
@ -26,11 +26,10 @@
|
|||
|
||||
@implementation LinkedListNode
|
||||
|
||||
+ initialize
|
||||
+ (void) initialize
|
||||
{
|
||||
if (self == [LinkedListNode class])
|
||||
[self setVersion:0]; /* beta release */
|
||||
return self;
|
||||
}
|
||||
|
||||
- init
|
||||
|
|
Loading…
Reference in a new issue