src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/ConnectionPool.java
branchhttp-client-branch
changeset 55806 e8bc8370f528
parent 55804 b36de693e838
child 55818 725576a6821e
equal deleted inserted replaced
55805:371ed971281e 55806:e8bc8370f528
   102         public int hashCode() {
   102         public int hashCode() {
   103             return Objects.hash(proxy, destination);
   103             return Objects.hash(proxy, destination);
   104         }
   104         }
   105     }
   105     }
   106 
   106 
   107     /* Exposed for testing */
       
   108     ConnectionPool() {
       
   109         this("ConnectionPool(?)");
       
   110     }
       
   111 
       
   112     ConnectionPool(long clientId) {
   107     ConnectionPool(long clientId) {
   113         this("ConnectionPool("+clientId+")");
   108         this("ConnectionPool("+clientId+")");
   114     }
   109     }
   115 
   110 
   116     /**
   111     /**