From 594b62c2e20b7de5cb346c1c23198c512f0ed0d6 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Thu, 26 Jun 2014 12:16:25 -0700 Subject: [PATCH] Remove testing code --- lime/graphics/Image.hx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lime/graphics/Image.hx b/lime/graphics/Image.hx index 4cae74756..9c26bfea2 100644 --- a/lime/graphics/Image.hx +++ b/lime/graphics/Image.hx @@ -57,7 +57,6 @@ class Image { __canvas.width = width; __canvas.height = height; __context.drawImage (data, 0, 0); - Browser.document.body.appendChild (__canvas); var pixels = __context.getImageData (0, 0, width, height); __bytes = new UInt8Array (pixels.data); @@ -92,4 +91,4 @@ typedef ImageData = js.html.Image; typedef ImageData = flash.display.BitmapData; #else typedef ImageData = UInt8Array; -#end \ No newline at end of file +#end