From df4bf0bbc076b481eaf9d047dd6958d9eb8f4dee Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Tue, 18 Mar 2014 22:14:55 +0000 Subject: [PATCH] remove experimental exception catching code in boot func - was never that helpful --- code/boot.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/code/boot.js b/code/boot.js index d9d4f884..6a54870f 100644 --- a/code/boot.js +++ b/code/boot.js @@ -520,7 +520,6 @@ window.setupLayerChooserApi = function() { // BOOTING /////////////////////////////////////////////////////////// function boot() { - try { //EXPERIMENTAL TEST if(!isSmartphone()) // TODO remove completely? window.debug.console.overwriteNativeIfRequired(); @@ -644,13 +643,6 @@ function boot() { android.bootFinished(); } - //EXPERIMENTAL TEST - } catch(e) { - console.log('Exception caught in IITC boot function - will fail to start'); - console.log(e); - debugger; - throw e; - } }