jdk/src/share/classes/sun/net/www/http/HttpClient.java
changeset 10419 12c063b39232
parent 10136 af9631156b25
child 11528 638ca25aec87
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   393             }
   393             }
   394             serverOutput = new PrintStream(
   394             serverOutput = new PrintStream(
   395                 new BufferedOutputStream(out),
   395                 new BufferedOutputStream(out),
   396                                          false, encoding);
   396                                          false, encoding);
   397         } catch (UnsupportedEncodingException e) {
   397         } catch (UnsupportedEncodingException e) {
   398             throw new InternalError(encoding+" encoding not found");
   398             throw new InternalError(encoding+" encoding not found", e);
   399         }
   399         }
   400         serverSocket.setTcpNoDelay(true);
   400         serverSocket.setTcpNoDelay(true);
   401     }
   401     }
   402 
   402 
   403     /*
   403     /*