Bug 186720 xmlterm NewURI should not return null

patch by andersma@luther.edu r=timeless sr=darin
This commit is contained in:
timeless%mozdev.org 2003-01-08 20:32:12 +00:00
Родитель e686da6f3c
Коммит 581e8f8031
1 изменённых файлов: 0 добавлений и 6 удалений

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

@ -160,12 +160,6 @@ XMLTermProtocolHandler.prototype.URIType =
XMLTermProtocolHandler.prototype.newURI =
function (aSpec, aCharset, aBaseURI)
{
if (aBaseURI)
{
debug("XMLTermProtocolHandler: aBaseURI passed to newURI, bailing.\n");
return null;
}
var uri = Components.classes[SIMPLEURI_CONTRACTID].createInstance(nsIURI);
uri.spec = aSpec;