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

Unified Diff: third_party/WebKit/Source/platform/text/DateTimeFormatTest.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/platform/text/DateTimeFormatTest.cpp
diff --git a/third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp b/third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp
index cacbd786fbf8abc5ce39f6ece3dc95c07eedee08..53729df97d2e7b3975ea2c40080d225d379b88bd 100644
--- a/third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp
+++ b/third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp
@@ -147,10 +147,10 @@ public:
builder.append("Tokens(");
for (unsigned index = 0; index < m_tokens.size(); ++index) {
if (index)
- builder.append(",");
+ builder.append(',');
builder.append(m_tokens[index].toString());
}
- builder.append(")");
+ builder.append(')');
return builder.toString();
}

Powered by Google App Engine
This is Rietveld 408576698