Code Cleanup

- Corrected comments.
- Eliminated redundant code, at the expense of Task::parse call.
This commit is contained in:
Paul Beckingham
2010-06-26 17:33:58 -04:00
parent 6a1a1cd70f
commit cd59f7f510
3 changed files with 4 additions and 22 deletions

View File

@@ -744,12 +744,9 @@ void Att::dequote (std::string& value) const
////////////////////////////////////////////////////////////////////////////////
// Encode values prior to serialization.
// \t -> &tab;
// ' -> &squot; <-- deprecated, no need to encode/decod single quotes.
// " -> &dquot;
// , -> &comma; <-- deprecated, no need to encode/decode commas.
// [ -> &open;
// ] -> &close;
// : -> &colon; <-- deprecated, no need to encode/decode colons.
void Att::encode (std::string& value) const
{
std::string::size_type i;