mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 19:51:13 +00:00
Fix spacing.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19526 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
07a6932650
commit
82df725c45
1 changed files with 6 additions and 4 deletions
|
@ -510,14 +510,16 @@ static NSString* globalDefaultURLEncoding=nil;
|
|||
LOGObjectFnStart();
|
||||
NSDebugMLLog(@"low",@"string:%@",string);
|
||||
NSAssert2([_contentData length]==0,
|
||||
@"Try to append string but content is data. \nString: '%@'\nData: '%@'",
|
||||
@"Try to append string but content is data. \n"
|
||||
@"String: '%@'\nData: '%@'",
|
||||
string,
|
||||
[[[NSString alloc]initWithData:_contentData
|
||||
encoding:[self contentEncoding]]
|
||||
autorelease]);
|
||||
if(string) {
|
||||
[_contentString appendString:string];
|
||||
}
|
||||
if (string)
|
||||
{
|
||||
[_contentString appendString:string];
|
||||
}
|
||||
#ifndef NO_GNUSTEP
|
||||
if (_cachesStack)
|
||||
[self _cacheAppendString:string];
|
||||
|
|
Loading…
Reference in a new issue