diff options
| author | Kevin Smith <git@kismith.co.uk> | 2010-04-30 08:23:10 (GMT) |
|---|---|---|
| committer | Kevin Smith <git@kismith.co.uk> | 2010-04-30 08:23:10 (GMT) |
| commit | 499f41d456203837b1ab8eb558a2855238957593 (patch) | |
| tree | 469665396e21ec25a4c8c8e5acbe972121bcd037 | |
| parent | 045fb30399e3c9d74ceb4ebe3dbddc9416c3ce28 (diff) | |
| download | swift-499f41d456203837b1ab8eb558a2855238957593.zip swift-499f41d456203837b1ab8eb558a2855238957593.tar.bz2 | |
Get rid of the cout in delay payload parsing.
| -rw-r--r-- | Swiften/Parser/PayloadParsers/DelayParser.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Swiften/Parser/PayloadParsers/DelayParser.cpp b/Swiften/Parser/PayloadParsers/DelayParser.cpp index a416ac1..b6fa240 100644 --- a/Swiften/Parser/PayloadParsers/DelayParser.cpp +++ b/Swiften/Parser/PayloadParsers/DelayParser.cpp @@ -7,7 +7,6 @@ #include "Swiften/Parser/PayloadParsers/DelayParser.h" #include <locale> -#include <iostream> #include <boost/date_time/time_facet.hpp> @@ -31,7 +30,6 @@ void DelayParser::handleStartElement(const String& /*element*/, const String& /* boost::posix_time::ptime stamp = dateFromString(attributes.getAttribute("stamp")); getPayloadInternal()->setStamp(stamp); if (!attributes.getAttribute("from").isEmpty()) { - std::cout << attributes.getAttribute("from"); String from = attributes.getAttribute("from"); getPayloadInternal()->setFrom(JID(from)); } |
Swift