Remove overeager null argument check, since the serialization code clearly allows a null arg. Not part of build.

This commit is contained in:
hyatt%netscape.com 2002-02-09 08:48:14 +00:00
Родитель a95caab0fd
Коммит 1e1f9ba688
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -160,7 +160,8 @@ nsDOMSerializer::SerializeToStream(nsIDOMNode *root,
{
NS_ENSURE_ARG_POINTER(root);
NS_ENSURE_ARG_POINTER(stream);
NS_ENSURE_ARG_POINTER(charset);
// The charset arg can be null, in which case we get the document's
// charset and use that when serializing.
nsCOMPtr<nsIDocumentEncoder> encoder;
nsresult rv = SetUpEncoder(root,charset,getter_AddRefs(encoder));