зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1200856 - Avoid the extra variable to make the string manipulation faster; r=sicking
This commit is contained in:
Родитель
33eff85862
Коммит
a01e0f79fc
|
@ -389,7 +389,6 @@ nsPreflightCache::GetCacheKey(nsIURI* aURI,
|
|||
port.AppendInt(NS_GetRealPort(uri));
|
||||
}
|
||||
|
||||
nsAutoCString cred;
|
||||
if (aWithCredentials) {
|
||||
_retval.AssignLiteral("cred");
|
||||
}
|
||||
|
@ -401,7 +400,7 @@ nsPreflightCache::GetCacheKey(nsIURI* aURI,
|
|||
rv = aURI->GetSpec(spec);
|
||||
NS_ENSURE_SUCCESS(rv, false);
|
||||
|
||||
_retval.Assign(cred + space + scheme + space + host + space + port + space +
|
||||
_retval.Append(space + scheme + space + host + space + port + space +
|
||||
spec);
|
||||
|
||||
return true;
|
||||
|
|
Загрузка…
Ссылка в новой задаче