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