From 436c56e910708d5b8e795a4a1ab16b6b05188187 Mon Sep 17 00:00:00 2001 From: Kristian Monsen Date: Wed, 24 Nov 2010 10:34:19 +0000 Subject: Removing CRASH() from asserts in WebRequest.cpp These asserts have not been triggered in months, so removing the crash (but keeping logging), and closing bug 2951985. Change-Id: I5bb31c6e23c18e83301428582ad895b0b679ff86 --- WebKit/android/WebCoreSupport/WebRequest.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'WebKit/android/WebCoreSupport/WebRequest.cpp') diff --git a/WebKit/android/WebCoreSupport/WebRequest.cpp b/WebKit/android/WebCoreSupport/WebRequest.cpp index 67144cb..a165b8a 100644 --- a/WebKit/android/WebCoreSupport/WebRequest.cpp +++ b/WebKit/android/WebCoreSupport/WebRequest.cpp @@ -51,7 +51,6 @@ extern android::AssetManager* globalAssetManager(); #define ASSERT(assertion, ...) do \ if (!(assertion)) { \ android_printLog(ANDROID_LOG_ERROR, __FILE__, __VA_ARGS__); \ - CRASH(); \ } \ while (0) -- cgit v1.1