remove experimental exception catching code in boot func - was never that helpful

This commit is contained in:
Jon Atkins 2014-03-18 22:14:55 +00:00
parent e1752954a1
commit df4bf0bbc0

View File

@ -520,7 +520,6 @@ window.setupLayerChooserApi = function() {
// BOOTING /////////////////////////////////////////////////////////// // BOOTING ///////////////////////////////////////////////////////////
function boot() { function boot() {
try { //EXPERIMENTAL TEST
if(!isSmartphone()) // TODO remove completely? if(!isSmartphone()) // TODO remove completely?
window.debug.console.overwriteNativeIfRequired(); window.debug.console.overwriteNativeIfRequired();
@ -644,13 +643,6 @@ function boot() {
android.bootFinished(); android.bootFinished();
} }
//EXPERIMENTAL TEST
} catch(e) {
console.log('Exception caught in IITC boot function - will fail to start');
console.log(e);
debugger;
throw e;
}
} }