Clean up a bracing nitpick.

This commit is contained in:
mrbkap%gmail.com 2006-02-24 22:12:32 +00:00
parent 9248a85042
commit fd12db55c4

View File

@ -228,9 +228,8 @@ PropertyExists(JSContext *cx, JSObject *obj, jsid id, JSBool *foundp)
return JS_FALSE;
*foundp = prop != NULL;
if (*foundp) {
if (*foundp)
OBJ_DROP_PROPERTY(cx, obj2, prop);
}
return JS_TRUE;
}