Remove unused code

pull/4027/head
Robert Ubiñas 2021-08-11 19:33:10 -04:00
parent 58cae73401
commit b95df54225
1 changed files with 1 additions and 2 deletions

View File

@ -134,10 +134,9 @@ bool OpenDDLExport::writeToStream(const std::string &statement) {
}
bool OpenDDLExport::writeNode(DDLNode *node, std::string &statement) {
bool success(true);
writeNodeHeader(node, statement);
if (node->hasProperties()) {
success |= writeProperties(node, statement);
writeProperties(node, statement);
}
writeLineEnd(statement);