Author: toad
Date: 2007-09-13 19:07:35 +0000 (Thu, 13 Sep 2007)
New Revision: 15147
Modified:
trunk/freenet/src/freenet/io/comm/MessageFilter.java
Log:
In fact we don't need to call it in the or() case - we just apply the timeout
of the filter which we are or()ing with.
Modified: trunk/freenet/src/freenet/io/comm/MessageFilter.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/MessageFilter.java 2007-09-13
19:06:46 UTC (rev 15146)
+++ trunk/freenet/src/freenet/io/comm/MessageFilter.java 2007-09-13
19:07:35 UTC (rev 15147)
@@ -167,7 +167,6 @@
public boolean match(Message m) {
if ((_or != null) && (_or.match(m))) {
- if(timedOut(System.currentTimeMillis())) return false;
_matched = true;
return true;
}