JSDOC/Packer.vala
authorAlan Knowles <alan@roojs.com>
Wed, 28 Oct 2015 10:02:57 +0000 (18:02 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 28 Oct 2015 10:02:57 +0000 (18:02 +0800)
JSDOC/Packer.vala

index 119de9e..b617ff6 100644 (file)
@@ -67,7 +67,7 @@ namespace JSDOC
                /**
                 * @cfg {String} debugTarget target to write files debug version to (uncompacted)- must be full path.
                 */
-               string debugTarget;
+               string targetDebug;
        
                /**
                 * @cfg {String} tmpDir  (optional) where to put the temporary files. 
@@ -97,10 +97,10 @@ namespace JSDOC
                
                public  string out = ""; // if no target is specified - then this will contain the result
     
-               public Packer(string target, string debugTarget)
+               public Packer(string target, string targetDebug = "")
                {
                        this.target = target;
-                       this.debugTarget  = debugTarget;
+                       this.targetDebug  = targetDebug;
                
                }