From 3966ac2ff9ed2a89ccdb41c5c2f5a58476be1cdd Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Thu, 26 Jun 2014 09:55:27 -0400 Subject: [PATCH] Bug 1030399 - remove semi-spammy warning from xptiInterfaceInfo.cpp; r=bholley This warning isn't that helpful anymore, because it means that we don't have interface info from an .xpt. For DOM interfaces, that's OK, because we'll have shimmed interface info instead. So just remove the warnings. --- xpcom/reflect/xptinfo/xptiInterfaceInfo.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/xpcom/reflect/xptinfo/xptiInterfaceInfo.cpp b/xpcom/reflect/xptinfo/xptiInterfaceInfo.cpp index ca7a6855493..c091eddf6e5 100644 --- a/xpcom/reflect/xptinfo/xptiInterfaceInfo.cpp +++ b/xpcom/reflect/xptinfo/xptiInterfaceInfo.cpp @@ -362,7 +362,6 @@ xptiInterfaceEntry::GetEntryForParam(uint16_t methodIndex, // This can happen if a declared interface is not available at runtime. if(!theEntry) { - NS_WARNING("Declared InterfaceInfo not found"); *entry = nullptr; return NS_ERROR_FAILURE; }