Преглед изворни кода

remove exception error handler for now, not a necessary example.

Ben Houston пре 10 година
родитељ
комит
da09e160c7
1 измењених фајлова са 0 додато и 7 уклоњено
  1. 0 7
      src/Three.js

+ 0 - 7
src/Three.js

@@ -25,13 +25,6 @@ if ( Math.sign === undefined ) {
 }
 
 
-THREE.ExceptionErrorHandler = function( message ) {
-	console.error( arguments );
-	var error = new Error( message );
-	error.optionalData = arguments;
-	throw error;
-};
-
 THREE.ConsoleErrorHandler = function() {
 	console.error( arguments );
 };