Handle null early in Sanitizer.sanitize()

Closes gh-10806
pull/8516/merge
Johnny Lim 7 years ago committed by Stephane Nicoll
parent 4358638266
commit c718880354

@ -79,9 +79,12 @@ class Sanitizer {
* @return the potentially sanitized value
*/
public Object sanitize(String key, Object value) {
if (value == null) {
return null;
}
for (Pattern pattern : this.keysToSanitize) {
if (pattern.matcher(key).matches()) {
return (value == null ? null : "******");
return "******";
}
}
return value;

Loading…
Cancel
Save