Browse Source

Synced with mrdoob's branch.

alteredq 14 years ago
parent
commit
7e22df47aa
1 changed files with 0 additions and 6 deletions
  1. 0 6
      utils/build.py

+ 0 - 6
utils/build.py

@@ -314,12 +314,6 @@ def compress(text):
 	with os.fdopen(in_tuple[0], 'w') as handle:
 		handle.write(text)
 
-	# uncomment to get concatenated JS if you can't figure out Closure compiler errors :|
-
-	#f = open( "debug.js" , "w" )
-	#f.write(text)
-	#f.close()
-
 	out_tuple = tempfile.mkstemp()
 	# os.system("java -jar yuicompressor-2.4.2.jar %s --type js -o %s --charset utf-8 -v" % (in_tuple[1], out_tuple[1]))
 	os.system("java -jar compiler.jar --language_in=ECMASCRIPT5 --js %s --js_output_file %s" % (in_tuple[1], out_tuple[1]))