Move assert to the correct place

Original committer: pedemont%us.ibm.com
Original revision: 1.2
Original date: 2004/10/19 23:15:51
This commit is contained in:
pedemont%us.ibm.com 2006-09-27 15:11:06 +00:00
parent 47543f4e32
commit 7c515e82d2

View File

@ -71,7 +71,6 @@ nsJavaXPTCStubWeakRef::QueryReferent(const nsIID& aIID, void** aInstancePtr)
// Java object has not been garbage collected. Do we have an
// associated nsJavaXPTCStub?
void* inst = GetMatchingXPCOMObject(mJavaEnv, javaObject);
NS_ASSERTION(IsXPTCStub(inst), "Found xpcom object was not an XPTCStub");
if (!inst) {
// No XPTCStub exists, so create one
@ -90,6 +89,7 @@ nsJavaXPTCStubWeakRef::QueryReferent(const nsIID& aIID, void** aInstancePtr)
*aInstancePtr = (void*) xpcomStub;
return NS_OK;
}
NS_ASSERTION(IsXPTCStub(inst), "Found xpcom object was not an XPTCStub");
// We have an exising XPTCStub, so return QI result
nsJavaXPTCStub* xpcomStub = GetXPTCStubAddr(inst);