From 7b126bd22426b90b6c443d6126d71a21ca311146 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 28 Oct 2015 18:02:57 +0800 Subject: [PATCH] JSDOC/Packer.vala --- JSDOC/Packer.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/JSDOC/Packer.vala b/JSDOC/Packer.vala index 119de9e..b617ff6 100644 --- a/JSDOC/Packer.vala +++ b/JSDOC/Packer.vala @@ -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; } -- 2.39.2