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

This commit is contained in:
Matias
2019-05-09 14:57:18 +02:00
parent 575ef4d927
commit 9903504c42

View File

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