NIFI-1079 Replacing Name for NULL_VALUE_FOR_EMPTY_STRING as I had accidentally removed it.
Signed-off-by: Bryan Bende <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/eb389cf8 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/eb389cf8 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/eb389cf8 Branch: refs/heads/NIFI-730 Commit: eb389cf84cd5f610b5ea2235a4eb78de47f6417e Parents: aef0d8f Author: Jeremy Dyer <[email protected]> Authored: Fri Oct 30 14:15:59 2015 -0400 Committer: Bryan Bende <[email protected]> Committed: Fri Oct 30 14:30:56 2015 -0400 ---------------------------------------------------------------------- .../org/apache/nifi/processors/standard/AttributesToJSON.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/eb389cf8/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java index 89bb0b6..0ab3ca7 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java @@ -99,9 +99,9 @@ public class AttributesToJSON extends AbstractProcessor { .build(); public static final PropertyDescriptor NULL_VALUE_FOR_EMPTY_STRING = new PropertyDescriptor.Builder() - .name(("If true a non existing or empty attribute will be NULL in the resulting JSON. If false an empty " + - "string will be placed in the JSON")) - .description("") + .name(("Null Value")) + .description("If true a non existing or empty attribute will be NULL in the resulting JSON. If false an empty " + + "string will be placed in the JSON") .required(true) .allowableValues("true", "false") .defaultValue("false")
