Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1303)

Unified Diff: third_party/WebKit/Source/core/testing/DictionaryTest.cpp

Issue 2143483002: Use the single char overload of append() when possible. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/testing/DictionaryTest.cpp
diff --git a/third_party/WebKit/Source/core/testing/DictionaryTest.cpp b/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
index e862f1fefaa6cde952c2a70a892c0238cf179924..4d993539978657c7db5500070392be714e0c2f7f 100644
--- a/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
+++ b/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
@@ -163,7 +163,7 @@ String DictionaryTest::stringFromIterable(ExecutionContext* executionContext, Di
if (firstLoop)
firstLoop = false;
else
- result.append(",");
+ result.append(',');
v8::Local<v8::Value> value;
if (v8Call(iterator.value(), value))

Powered by Google App Engine
This is Rietveld 408576698