Commit b76cea25 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Removed System.out.

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@2802 b35dd754-fafc-0310-a699-88a17e54d16e
parent 3e626cd7
......@@ -117,7 +117,6 @@ public class TLSStreamWriter {
private ByteBuffer resizeApplicationBuffer(int increment) {
// TODO Creating new buffers and copying over old one may not scale. Consider using views. Thanks to Noah for the tip.
if (outAppData.remaining() < increment) {
System.out.println("resizing writer");
ByteBuffer bb = ByteBuffer.allocate(outAppData.capacity() + wrapper.getAppBuffSize());
outAppData.flip();
bb.put(outAppData);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment