diff --git a/src/cocoatweet/api/status/userTimeline.cc b/src/cocoatweet/api/status/userTimeline.cc index 52f3405..7da4a3f 100644 --- a/src/cocoatweet/api/status/userTimeline.cc +++ b/src/cocoatweet/api/status/userTimeline.cc @@ -1,7 +1,6 @@ #include "cocoatweet/api/status/userTimeline.h" #include #include "nlohmann/json.hpp" -#include namespace CocoaTweet::API::Statuses { UserTimeline::UserTimeline() { @@ -20,7 +19,6 @@ std::vector UserTimeline::process( auto json = nlohmann::json::parse(_rcv); for (auto j : json) { tweet.push_back(CocoaTweet::API::Model::Tweet::parse(j.dump())); - std::cout << j.dump() << std::endl; } }); return tweet;