Merge pull request #10806 from izeye:handle-null-early
* pr/10806: Handle null early in Sanitizer.sanitize()
This commit is contained in:
commit
03174277b4
|
@ -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…
Reference in New Issue