mirror of https://github.com/AxioDL/tinyxml2.git
Merge pull request #269 from Dmitry-Me/makeFormattingConsistent
Fix formatting, get rid of useless if-else chain
This commit is contained in:
commit
d15686653a
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue