Merge pull request #269 from Dmitry-Me/makeFormattingConsistent

Fix formatting, get rid of useless if-else chain
This commit is contained in:
Lee Thomason 2015-01-09 16:57:17 -08:00
commit d15686653a
1 changed files with 2 additions and 1 deletions

View File

@ -931,7 +931,8 @@ char* XMLText::ParseDeep( char* p, StrPair* )
p = _value.ParseText( p, "<", flags );
if ( p && *p ) {
return p-1;
} else if ( !p ) {
}
if ( !p ) {
_document->SetError( XML_ERROR_PARSING_TEXT, start, 0 );
}
}