Fix shellcheck issue in userid-validation

Shellcheck correctly notes that that xs in comparisons are uneeded

```
[1mIn jenkins/userid-validation line 25:[0m [0mif [
"x${COMMITTER_EMAIL}" == "x" ]; then[0m [32m     ^-------------------^
SC2268 (style): Avoid x-prefix in comparisons as it no longer serves a
purpose.[0m

[1mDid you mean: [0m if [ "${COMMITTER_EMAIL}" == "" ]; then

[1mIn jenkins/userid-validation line 38:[0m [0mif [
"x${COMMITTER_USERNAME}" == "x" ]; then[0m [32m
^----------------------^ SC2268 (style): Avoid x-prefix in comparisons
as it no longer serves a purpose.[0m
```

Do as the robot commands.

Tested: Not sure how to test this, although it's pretty trivial.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Idfa440f146e90f77e7b84eb0ff5f2d68f6b612c1
1 file changed