Fix formatting, get rid of useless if-else chain

This commit is contained in:
Dmitry-Me 2015-01-09 15:50:47 +03:00
parent 3cebdc4fac
commit 257e11b25b
1 changed files with 2 additions and 1 deletions

View File

@ -929,7 +929,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 );
}
}