src/java.net.http/share/classes/jdk/internal/net/http/RawChannelImpl.java
branchhttp-client-branch
changeset 56269 234813fd33bc
parent 56092 fd85b2bf2b0d
equal deleted inserted replaced
56268:481d8c9acc7f 56269:234813fd33bc
   143     public void shutdownOutput() throws IOException {
   143     public void shutdownOutput() throws IOException {
   144         detachedChannel.shutdownOutput();
   144         detachedChannel.shutdownOutput();
   145     }
   145     }
   146 
   146 
   147     @Override
   147     @Override
   148     public void close() throws IOException {
   148     public void close() {
   149         detachedChannel.close();
   149         detachedChannel.close();
   150     }
   150     }
   151 
   151 
   152     @Override
   152     @Override
   153     public String toString() {
   153     public String toString() {
   154         return super.toString()+"("+ detachedChannel.toString() + ")";
   154         return super.toString() + "(" + detachedChannel.toString() + ")";
   155     }
   155     }
   156 
       
   157 
       
   158 }
   156 }