Github user joewitt commented on the issue:

    https://github.com/apache/nifi/pull/1002
  
    @trixpan from  DRY/readability perspective consider creating the builder 
ahead of the if/else.  So an alternative approach would look like this 
(formatting aside)
    
    `
                        ValidationResult.Builder  builder = new 
ValidationResult.Builder().valid(false).input(null).subject(descriptor.getDisplayName());
                      builder = (descriptor.getDisplayName() != null) ? 
builder.explanation(descriptor.getDisplayName() + " is required") : 
.explanation(descriptor.getName() + " is required");
                        results.add(builder.build());
    `


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to