Bug 1348398 - Remove Gecko_Truncate[C]String as it is no longer used, r=froydnj

This commit is contained in:
Michael Layzell 2017-03-24 15:14:28 -04:00
Родитель e79ce455e3
Коммит 891ba54825
1 изменённых файлов: 0 добавлений и 14 удалений

Просмотреть файл

@ -425,18 +425,4 @@ bool Gecko_FallibleSetLengthString(nsAString* aThis, uint32_t aLength)
return aThis->SetLength(aLength, mozilla::fallible);
}
// NOTE: These two methods, Gecko_TruncateString and Gecko_TruncateCString are
// not used by the nsstring bindings, but until the version in servo
// (nsstring_vendor) is udpated, they still need to be included in the binary to
// not break the tree. These will be removed in bug 1348398.
void Gecko_TruncateString(nsAString* aThis)
{
aThis->Truncate();
}
void Gecko_TruncateCString(nsACString* aThis)
{
aThis->Truncate();
}
} // extern "C"