You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2019/05/06 14:33:29 UTC

[httpcomponents-client] branch master updated: Clean up.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git


The following commit(s) were added to refs/heads/master by this push:
     new 81c1bc4  Clean up.
81c1bc4 is described below

commit 81c1bc4dc3ca5a3134c5c60e8beff08be2fd8792
Author: Gary Gregory <gg...@rocketsoftware.com>
AuthorDate: Fri May 3 10:28:40 2019 -0400

    Clean up.
---
 .../test/java/org/apache/hc/client5/http/impl/cache/HttpTestUtils.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/httpclient5-cache/src/test/java/org/apache/hc/client5/http/impl/cache/HttpTestUtils.java b/httpclient5-cache/src/test/java/org/apache/hc/client5/http/impl/cache/HttpTestUtils.java
index 550b78a..c65c16a 100644
--- a/httpclient5-cache/src/test/java/org/apache/hc/client5/http/impl/cache/HttpTestUtils.java
+++ b/httpclient5-cache/src/test/java/org/apache/hc/client5/http/impl/cache/HttpTestUtils.java
@@ -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;