src/share/classes/sun/security/ssl/EngineInputRecord.java

Print this page

        

@@ -363,12 +363,11 @@
     void writeBuffer(OutputStream s, byte [] buf, int off, int len)
             throws IOException {
         /*
          * Copy data out of buffer, it's ready to go.
          */
-        ByteBuffer netBB = (ByteBuffer)
-            (ByteBuffer.allocate(len).put(buf, 0, len).flip());
+        ByteBuffer netBB = ByteBuffer.allocate(len).put(buf, 0, len).flip();
         engine.writer.putOutboundDataSync(netBB);
     }
 
     /*
      * Delineate or read a complete packet from src.