NIFI-1948 Fixed encoding-version attribute not getting created in exported templates. This closes #485

This commit is contained in:
Jeff Storck 2016-06-01 11:36:41 -04:00 committed by Matt Gilman
parent 8127314975
commit 3e064101e9
1 changed files with 2 additions and 0 deletions

View File

@ -746,6 +746,8 @@ public final class DtoFactory {
copy.setDescription(original.getDescription()); copy.setDescription(original.getDescription());
copy.setTimestamp(original.getTimestamp()); copy.setTimestamp(original.getTimestamp());
copy.setUri(original.getUri()); copy.setUri(original.getUri());
copy.setEncodingVersion(original.getEncodingVersion());
return copy; return copy;
} }