# HG changeset patch # User Thinker K.F. Li # Date 1283082328 -28800 # Node ID 1b522a22e16ae990453147f8772da3b380061b83 # Parent 11f062c2c0b8a3e39ba454d24367d684866d08f6 Remove sys.puts, it is why leaking diff -r 11f062c2c0b8 -r 1b522a22e16a nodejs/canvas.js --- 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);