Skip to content

Commit e8ffc6f

Browse files
committed
Merge branch 'WD_1.X_dev' of https://portal-ua.globallogic.com/git/wd into WD_1.X_dev
1 parent e3224ae commit e8ffc6f

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/base/values.cc

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include "base/logging.h"
1313
#include "base/string_util.h"
1414
#include "base/utf_string_conversions.h"
15-
#include <iostream>
15+
1616
namespace {
1717

1818
// Make a deep copy of |node|, but don't include empty lists or dictionaries
@@ -378,18 +378,13 @@ bool DictionaryValue::HasKey(const std::string& key) const {
378378
}
379379

380380
void DictionaryValue::Clear() {
381-
std::cout << "*********** DictionaryValue::Clear()\n";
382381
ValueMap::iterator dict_iterator = dictionary_.begin();
383382
while (dict_iterator != dictionary_.end()) {
384-
if (dict_iterator->first == "message") {
385-
std::cout<< "******** "<<dict_iterator->first <<" = "<< dict_iterator->second<< " = { "<< *(dict_iterator->second)<< " }";
386-
} else
387-
std::cout<<"******** "<<dict_iterator->first <<" = "<< dict_iterator->second<<std::endl;
383+
388384
delete dict_iterator->second;
389385
++dict_iterator;
390386
}
391387

392-
std::cout << "*********** finish: DictionaryValue::Clear()\n\n";
393388
dictionary_.clear();
394389
}
395390

src/webdriver/webdriver_logging.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,6 @@ const ListValue* InMemoryLog::entries_list() const {
277277

278278
void InMemoryLog::clear_entries_list() {
279279
base::AutoLock auto_lock(entries_lock_);
280-
std::cout<<"********** InMemoryLog::clear_entries_list()\n";
281280
entries_list_.Clear();
282281
}
283282

0 commit comments

Comments
 (0)