I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 3bfc1094 authored by jrandom's avatar jrandom Committed by zzz
Browse files

(cough. not often a problem though)

parent 3989638f
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,6 @@ class PeerConnectionOut implements Runnable
*/
public void run()
{
try { Thread.sleep(1000); } catch (InterruptedException ie) {}
try
{
while (!quit && peer.isConnected())
......@@ -180,7 +179,8 @@ class PeerConnectionOut implements Runnable
// return;
quit = true;
thread.interrupt();
if (thread != null)
thread.interrupt();
sendQueue.clear();
sendQueue.notify();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment