src/JsRender/NodeToVala.vala
authorAlan Knowles <alan@roojs.com>
Tue, 19 May 2015 06:33:37 +0000 (14:33 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 19 May 2015 06:33:37 +0000 (14:33 +0800)
src/JsRender/NodeToVala.vala

index 4d718ee..5b67257 100644 (file)
@@ -188,13 +188,15 @@ public class JsRender.NodeToVala : Object {
        public void addLine(string str= "")
        {
                this.cur_line++;
-               this.ret += "/*%d*/ ".printf(this.cur_line-1) + str + "\n";
+               //this.ret += "/*%d*/ ".printf(this.cur_line-1) + str + "\n";
+               this.ret += str + "\n";
        }
        public void addMultiLine(string str= "")
        {
                var l = this.cur_line;
                this.cur_line += str.split("\n").length;
-               this.ret +=  "/*%d*/ ".printf(l) + str + "\n";
+               //this.ret +=  "/*%d*/ ".printf(l) + str + "\n";
+               this.ret +=   + str + "\n";
        }