Author: toad
Date: 2008-11-21 19:59:43 +0000 (Fri, 21 Nov 2008)
New Revision: 23794
Modified:
trunk/freenet/src/freenet/support/io/CountedOutputStream.java
Log:
Minor optimisation
Modified: trunk/freenet/src/freenet/support/io/CountedOutputStream.java
===================================================================
--- trunk/freenet/src/freenet/support/io/CountedOutputStream.java
2008-11-21 19:59:23 UTC (rev 23793)
+++ trunk/freenet/src/freenet/support/io/CountedOutputStream.java
2008-11-21 19:59:43 UTC (rev 23794)
@@ -22,7 +22,7 @@
}
public void write(byte[] buf, int offset, int length) throws
IOException {
- super.write(buf, offset, length);
+ out.write(buf, offset, length);
written += length;
}
_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs