From 341643b41d1f5e652268691498809b90dc9f8222 Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Fri, 22 Apr 2011 18:28:11 -0700 Subject: [PATCH] Bug 652050: revert diagnostic 2 (remove temporary debugging printfs) --- content/svg/content/src/nsSVGFeatures.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/content/svg/content/src/nsSVGFeatures.cpp b/content/svg/content/src/nsSVGFeatures.cpp index 7adb232c7812..4a2b5d2b2769 100644 --- a/content/svg/content/src/nsSVGFeatures.cpp +++ b/content/svg/content/src/nsSVGFeatures.cpp @@ -223,16 +223,9 @@ nsSVGFeatures::PassesConditionalProcessingTests(nsIContent *aContent, // Get our language preferences if (!acceptLangs.IsEmpty()) { - // XXXdholbert Temporary diagnostic to verify a theory in Bug 652050 -#ifdef ANDROID - printf_stderr("Bug 652050 diagnostic: intl.accept_languages is nonempty.\n"); -#endif return MatchesLanguagePreferences(value, acceptLangs); } else { // For now, evaluate to true. -#ifdef ANDROID - printf_stderr("Bug 652050 diagnostic: intl.accept_languages is EMPTY!\n"); -#endif NS_WARNING("no default language specified for systemLanguage conditional test"); return !value.IsEmpty(); }