Merge pull request #10806 from izeye:handle-null-early

* pr/10806:
  Handle null early in Sanitizer.sanitize()
This commit is contained in:
Stephane Nicoll 2017-10-29 14:04:26 +01:00
commit 03174277b4
1 changed files with 4 additions and 1 deletions

View File

@ -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;