changeset 773:1b522a22e16a

Remove sys.puts, it is why leaking
author Thinker K.F. Li <thinker@codemud.net>
date Sun, 29 Aug 2010 19:45:28 +0800
parents 11f062c2c0b8
children b0c348ad1a8f
files nodejs/canvas.js
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nodejs/canvas.js	Sun Aug 29 19:13:59 2010 +0800
+++ b/nodejs/canvas.js	Sun Aug 29 19:45:28 2010 +0800
@@ -41,7 +41,7 @@
 
 canvas.prototype.line=function(x1,y1,x2,y2) {
     var s = "M "+x1+","+y1+" L "+x2+","+y2;
-	sys.puts(s);
+    //sys.puts(s);
 
     var p = this.mb_rt.path_new(s);
 	this.root.add_shape(p);