Author: toad Date: 2008-06-13 13:02:10 +0000 (Fri, 13 Jun 2008) New Revision: 20307
Modified: branches/db4o/freenet/src/freenet/node/fcp/SubscribeUSK.java Log: And another one Modified: branches/db4o/freenet/src/freenet/node/fcp/SubscribeUSK.java =================================================================== --- branches/db4o/freenet/src/freenet/node/fcp/SubscribeUSK.java 2008-06-13 13:01:34 UTC (rev 20306) +++ branches/db4o/freenet/src/freenet/node/fcp/SubscribeUSK.java 2008-06-13 13:02:10 UTC (rev 20307) @@ -3,6 +3,9 @@ * http://www.gnu.org/ for further details of the GPL. */ package freenet.node.fcp; +import com.db4o.ObjectContainer; + +import freenet.client.async.ClientContext; import freenet.client.async.USKCallback; import freenet.keys.USK; import freenet.node.NodeClientCore; @@ -24,7 +27,7 @@ core.uskManager.subscribe(message.key, this, !message.dontPoll, handler.getClient().lowLevelClientTransient); } - public void onFoundEdition(long l, USK key) { + public void onFoundEdition(long l, USK key, ObjectContainer container, ClientContext context) { if(handler.isClosed()) { core.uskManager.unsubscribe(key, this, !dontPoll); return;
