From 412d8083ea9d552b225dfb9fff4f6dfe2614979b Mon Sep 17 00:00:00 2001 From: "valeski%netscape.com" Date: Fri, 18 Feb 2000 23:38:13 +0000 Subject: [PATCH] removing an un-necessary comment git-svn-id: svn://10.0.0.236/trunk@61327 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/netwerk/base/public/nsNetUtil.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/mozilla/netwerk/base/public/nsNetUtil.h b/mozilla/netwerk/base/public/nsNetUtil.h index 4b8667c020e..9d5068e3efd 100644 --- a/mozilla/netwerk/base/public/nsNetUtil.h +++ b/mozilla/netwerk/base/public/nsNetUtil.h @@ -53,9 +53,6 @@ NS_NewURI(nsIURI* *result, const char* spec, nsIURI* baseURI = nsnull) inline nsresult NS_NewURI(nsIURI* *result, const nsString& spec, nsIURI* baseURI = nsnull) { - // XXX if the string is unicode, GetBuffer() returns null. - // XXX we need a strategy to deal w/ unicode specs (if there should - // XXX even be such a thing) char* specStr = spec.ToNewUTF8String(); // this forces a single byte char* if (specStr == nsnull) return NS_ERROR_OUT_OF_MEMORY;