BOB config fix, I2CP fix some leaks, see history.txt for details

This commit is contained in:
sponge
2011-02-09 16:15:36 +00:00
parent 467de344b9
commit 99ebad3032
5 changed files with 34 additions and 5 deletions

View File

@@ -17,7 +17,7 @@ import net.i2p.util.Log;
* @since 0.8.3
*/
class QueuedClientConnectionRunner extends ClientConnectionRunner {
private final I2CPMessageQueue queue;
private /* final */ I2CPMessageQueue queue;
/**
* Create a new runner with the given queues
@@ -46,6 +46,7 @@ class QueuedClientConnectionRunner extends ClientConnectionRunner {
void stopRunning() {
super.stopRunning();
queue.close();
queue = null;
}
/**