Github user alopresto commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2987#discussion_r215046005
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/JoltTransformJSON.java
---
@@ -130,6 +130,15 @@
.required(true)
.build();
+ public static final PropertyDescriptor PRETTY_PRINT = new
PropertyDescriptor.Builder()
+ .name(("Pretty Print"))
--- End diff --
It looks like it was added by a different author, and there are no external
references to it, so I believe it can be changed to `private`. @markap14 and
@YolandaMDavis , do you have any reasons it should not be changed? Thanks.
If the change is made, it should also have a `displayName` added for
consistency.
---