GUACAMOLE-422: Replace non-short-circuit logic in null check (`&`) with proper short-circuit logic (`&&`).

Checking `timezone != null & !timezone.isEmpty()` will result in a
`NullPointerException` when `timezone` is null, as the `&` ensures
`timezone.isEmpty()` will run in all cases.
1 file changed