tidy indentation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35938 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2013-01-07 21:39:35 +00:00
parent 8024b3a84b
commit 4f4ab32e92

View file

@ -3752,8 +3752,10 @@ agree, create a new GSCInlineString otherwise.
{
if (!_flags.wide)
{
id tinyString = createTinyString((char*)_contents.c + aRange.location, aRange.length);
id tinyString;
tinyString = createTinyString((char*)_contents.c + aRange.location,
aRange.length);
if (tinyString)
{
return tinyString;
@ -3776,8 +3778,10 @@ agree, create a new GSCInlineString otherwise.
}
if (!_flags.wide)
{
id tinyString = createTinyString((char*)_contents.c + aRange.location, aRange.length);
id tinyString;
tinyString = createTinyString((char*)_contents.c + aRange.location,
aRange.length);
if (tinyString)
{
return tinyString;
@ -4087,8 +4091,10 @@ agree, create a new GSCInlineString otherwise.
{
if (!_flags.wide)
{
id tinyString = createTinyString((char*)_contents.c + aRange.location, aRange.length);
id tinyString;
tinyString = createTinyString((char*)_contents.c + aRange.location,
aRange.length);
if (tinyString)
{
return tinyString;
@ -4106,8 +4112,10 @@ agree, create a new GSCInlineString otherwise.
{
if (!_flags.wide)
{
id tinyString = createTinyString((char*)_contents.c + aRange.location, aRange.length);
id tinyString;
tinyString = createTinyString((char*)_contents.c + aRange.location,
aRange.length);
if (tinyString)
{
return tinyString;
@ -5119,13 +5127,15 @@ NSAssert(_flags.owned == 1 && _zone != 0, NSInternalInconsistencyException);
}
else
{
id tinyString = createTinyString((char*)_contents.c + aRange.location, aRange.length);
id tinyString;
tinyString = createTinyString((char*)_contents.c + aRange.location,
aRange.length);
if (tinyString)
{
return tinyString;
}
}
else
{
GSCInlineString *o;
@ -5134,6 +5144,7 @@ NSAssert(_flags.owned == 1 && _zone != 0, NSInternalInconsistencyException);
return o;
}
}
}
- (NSString*) substringWithRange: (NSRange)aRange
{
@ -5154,13 +5165,15 @@ NSAssert(_flags.owned == 1 && _zone != 0, NSInternalInconsistencyException);
}
else
{
id tinyString = createTinyString((char*)_contents.c + aRange.location, aRange.length);
id tinyString;
tinyString = createTinyString((char*)_contents.c + aRange.location,
aRange.length);
if (tinyString)
{
return tinyString;
}
}
else
{
GSCInlineString *o;
@ -5169,6 +5182,7 @@ NSAssert(_flags.owned == 1 && _zone != 0, NSInternalInconsistencyException);
return o;
}
}
}
- (id) uppercaseString
{