Closed dlemstra closed 4 years ago
This pull request removes the checks to test if document == NULL and the unnecessary call to mxmlDelete(document). The various _xml( methods already check if document is null and will return false when this happens.
document == NULL
mxmlDelete(document)
_xml(
document
This pull request removes the checks to test if
document == NULL
and the unnecessary call tomxmlDelete(document)
. The various_xml(
methods already check ifdocument
is null and will return false when this happens.