Remove infinite loop.

This commit is contained in:
JoelKatz
2012-09-28 19:14:21 -07:00
parent 2b0c95a838
commit ebf3aeee64

View File

@@ -46,7 +46,7 @@ std::string SerializedLedgerEntry::getFullText() const
ret += "\" = { ";
ret += mFormat->t_name;
ret += ", ";
ret += getFullText();
ret += STObject::getFullText();
ret += "}";
return ret;
}