Skip to content

Commit a0cf3e1

Browse files
committed
Update BaseValidationRule.java
A minor mistake in previous commit
1 parent 7ac1c84 commit a0cf3e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/owasp/esapi/reference/validation/BaseValidationRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public Object getValid( String context, String input, ValidationErrorList errorL
100100
try {
101101
valid = getValid( context, input );
102102
} catch (ValidationException e) {
103-
if( errorList == null {
103+
if( errorList == null) {
104104
throw e;
105105
} else {
106106
errorList.addError(context, e);

0 commit comments

Comments
 (0)