Clean up.

This commit is contained in:
Gary Gregory 2019-05-03 10:28:40 -04:00
parent 8a45e86082
commit 81c1bc4dc3
1 changed files with 1 additions and 2 deletions

View File

@ -119,8 +119,7 @@ public class HttpTestUtils {
if (i1 == null && i2 == null) {
return true;
}
if (i1 == null || i2 == null)
{
if (i1 == null || i2 == null) {
return false; // avoid possible NPEs below
}
int b1 = -1;