(no message)

This commit is contained in:
Olesya Smirnova
2005-01-17 17:14:22 +03:00
parent ef3df3a1e3
commit 6fa7bc5637

View File

@@ -45,7 +45,7 @@ public class FormatterUtil {
while (wsCandidate != null && isSpaceTextElement(wsCandidate)) {
result.append(wsCandidate.getText());
final TreeElement newValue = getWsCandidate(wsCandidate);
if (wsCandidate == newValue) break;
if (wsCandidate.getStartOffset() == newValue.getStartOffset()) break;
wsCandidate = newValue;
}
return result.toString();