Skip to content

Commit

Permalink
WW-4312 Allows null in iterator tag
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlenart committed Jan 5, 2016
2 parents d862d5b + 1e21b7e commit f457c77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public boolean start(Writer writer) {

String var = getVar();

if ((var != null) && (currentValue != null)) {
if ((var != null)) {
putInContext(currentValue);
}

Expand Down

0 comments on commit f457c77

Please sign in to comment.