Remove unreachable printf since tinderbox isn't hitting it (bug 474537).

--HG--
extra : rebase_source : 95bf4a605216c97aaa15e552eb6779be8dbb33e3
This commit is contained in:
Blake Kaplan 2009-02-25 13:48:06 -08:00
parent d9eda25bc6
commit 1a4ca1407d

View File

@ -5083,9 +5083,6 @@ nsCSSFrameConstructor::FindInputData(nsIContent* aContent,
nsCOMPtr<nsIFormControl> control = do_QueryInterface(aContent);
NS_ASSERTION(control, "input doesn't implement nsIFormControl?");
if (!control) {
printf("BOGUS INPUT DETECTED IN FRAME CONSTRUCTION (about to crash).\n");
}
return FindDataByInt(control->GetType(), aContent, aStyleContext,
sInputData, NS_ARRAY_LENGTH(sInputData));