diff options
-rw-r--r-- | base/values.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/base/values.cc b/base/values.cc index 2d3984e..5196cec 100644 --- a/base/values.cc +++ b/base/values.cc @@ -465,10 +465,8 @@ void DictionaryValue::SetStringWithoutPathExpansion( bool DictionaryValue::Get( const std::string& path, const Value** out_value) const { DCHECK(IsStringUTF8(path)); -// LOG(WARNING) << "\n1\n"; std::string current_path(path); const DictionaryValue* current_dictionary = this; -// LOG(WARNING) << "\n2\n"; for (size_t delimiter_position = current_path.find('.'); delimiter_position != std::string::npos; delimiter_position = current_path.find('.')) { @@ -480,7 +478,6 @@ bool DictionaryValue::Get( current_dictionary = child_dictionary; current_path.erase(0, delimiter_position + 1); } -// LOG(WARNING) << "\n3\n"; return current_dictionary->GetWithoutPathExpansion(current_path, out_value); } |