Do not add space between text nodes

This commit is contained in:
Adrien Loison 2017-03-28 14:30:33 +02:00
parent 3128f86769
commit 30e4dd7c9a
2 changed files with 0 additions and 5 deletions

View File

@ -234,11 +234,6 @@ class SharedStringsHelper
$textValue = '';
foreach ($textNodes as $nodeIndex => $textNode) {
if ($nodeIndex !== 0) {
// add a space between each "t" node
$textValue .= ' ';
}
$textNodeAsString = $textNode->__toString();
$shouldPreserveWhitespace = $this->shouldPreserveWhitespace($textNode);