I think this long chain of `if`s would be better as a switch statement:
```
switch {
case pw == "":
return ...
case pw != confirmPw:
return ...
default:
return nil
}
```[ Full content available at: https://github.com/apache/trafficcontrol/pull/2852 ] This message was relayed via gitbox.apache.org for [email protected]
