Removed some code that I didn't mean to fix (I already submitted this in another PR: https://github.com/assimp/assimp/pull/2450).

pull/2451/head
Matias 2019-05-09 14:57:18 +02:00
parent 575ef4d927
commit 9903504c42
1 changed files with 2 additions and 4 deletions

View File

@ -253,7 +253,6 @@ void FBX::Node::DumpChildren(
} else {
std::ostringstream ss;
DumpChildrenAscii(ss, indent);
if (ss.tellp() > 0)
s.PutString(ss.str());
}
}
@ -268,7 +267,6 @@ void FBX::Node::End(
} else {
std::ostringstream ss;
EndAscii(ss, indent, has_children);
if (ss.tellp() > 0)
s.PutString(ss.str());
}
}