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

Unified Diff: third_party/WebKit/Source/core/fetch/Resource.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/fetch/Resource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/Resource.cpp b/third_party/WebKit/Source/core/fetch/Resource.cpp
index 20b69e38de6bd385ea801e11c98a8aafe177faef..4a0065a8c10a6a6798675a5edd7befc9980a80ab 100644
--- a/third_party/WebKit/Source/core/fetch/Resource.cpp
+++ b/third_party/WebKit/Source/core/fetch/Resource.cpp
@@ -618,7 +618,7 @@ String Resource::reasonNotDeletable() const
builder.append(", Finished=");
builder.appendNumber(m_finishedClients.size());
}
- builder.append(")");
+ builder.append(')');
}
if (m_loader) {
if (!builder.isEmpty())
@@ -630,7 +630,7 @@ String Resource::reasonNotDeletable() const
builder.append(' ');
builder.append("m_preloadCount(");
builder.appendNumber(m_preloadCount);
- builder.append(")");
+ builder.append(')');
}
if (memoryCache()->contains(this)) {
if (!builder.isEmpty())

Powered by Google App Engine
This is Rietveld 408576698