eclipse plugin: temp fix for xml-type files comments on empty parameters
This commit is contained in:
parent
29985704df
commit
c2ca79b365
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ public class TemplateProvider
|
|||
{
|
||||
template[i] = template[i].replace(param.paramName, param.paramValue);
|
||||
|
||||
if (param.paramValue == null || param.paramValue.isEmpty())
|
||||
if ((templateName!= "build_xml") && (param.paramValue == null || param.paramValue.isEmpty()))
|
||||
{
|
||||
// we don't have any value supplied -
|
||||
// let's comment that line (if it's not already
|
||||
|
|
Loading…
Add table
Reference in a new issue