mirror of https://github.com/apache/nifi.git
NIFI-1123: Fixing a botched commit.
This commit is contained in:
parent
52b24b93d9
commit
9e2f6df205
|
@ -133,7 +133,7 @@ public class UpdateAttribute extends AbstractProcessor implements Searchable {
|
|||
private final Set<Relationship> relationships;
|
||||
|
||||
private static final Validator DELETE_PROPERTY_VALIDATOR = new Validator() {
|
||||
private static final Validator DPV_RE_VALIDATOR = StandardValidators.createRegexValidator(0, Integer.MAX_VALUE, true);
|
||||
private final Validator DPV_RE_VALIDATOR = StandardValidators.createRegexValidator(0, Integer.MAX_VALUE, true);
|
||||
@Override
|
||||
public ValidationResult validate(String subject, String input, ValidationContext context) {
|
||||
if (context.isExpressionLanguageSupported(subject) && context.isExpressionLanguagePresent(input)) {
|
||||
|
|
Loading…
Reference in New Issue