handle reclose, logging, more clear notification

This commit is contained in:
jrandom
2004-05-04 05:53:11 +00:00
committed by zzz
parent b04512a4f6
commit 3cac1238ed
2 changed files with 10 additions and 3 deletions

View File

@@ -242,7 +242,12 @@ class I2PSocketImpl implements I2PSocket {
}
public synchronized void notifyClosed() {
notifyAll();
I2PInputStream.this.notifyAll();
}
public void close() throws IOException {
super.close();
notifyClosed();
}
}