mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Tidyup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@8059 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
245e8feb70
commit
0573317377
1 changed files with 6 additions and 12 deletions
|
@ -1446,6 +1446,12 @@ transmute(ivars self, NSString *aString)
|
|||
* will try to convert an instance to a type we can really use if necessary.
|
||||
*/
|
||||
@implementation GSString
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
setup();
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
if (_flags.free == 1 && _contents.c != 0)
|
||||
|
@ -1516,12 +1522,6 @@ transmute(ivars self, NSString *aString)
|
|||
* 8-bit string class, storing immutable data in a single buffer.
|
||||
*/
|
||||
@implementation GSCString
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
setup();
|
||||
}
|
||||
|
||||
- (BOOL) boolValue
|
||||
{
|
||||
return boolValue_c((ivars)self);
|
||||
|
@ -1792,12 +1792,6 @@ transmute(ivars self, NSString *aString)
|
|||
|
||||
|
||||
@implementation GSUnicodeString
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
setup();
|
||||
}
|
||||
|
||||
- (BOOL) boolValue
|
||||
{
|
||||
return boolValue_u((ivars)self);
|
||||
|
|
Loading…
Reference in a new issue