Author: toad
Date: 2008-12-16 19:05:12 +0000 (Tue, 16 Dec 2008)
New Revision: 24385

Modified:
   trunk/freenet/src/freenet/io/xfer/PacketThrottle.java
Log:
Call the chain-callback's sent() method. Should have no practical impact, as 
the only throttled packet callback doesn't use sent().


Modified: trunk/freenet/src/freenet/io/xfer/PacketThrottle.java
===================================================================
--- trunk/freenet/src/freenet/io/xfer/PacketThrottle.java       2008-12-16 
17:01:20 UTC (rev 24384)
+++ trunk/freenet/src/freenet/io/xfer/PacketThrottle.java       2008-12-16 
19:05:12 UTC (rev 24385)
@@ -310,6 +310,7 @@
 
                public void sent() {
                        // Ignore
+                       if(chainCallback != null) chainCallback.sent();
                }
                
                @Override

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to