mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-21 22:02:06 +01:00
[tcp] Add code comment why we need to set "running = false" here
This commit is contained in:
parent
9d1b88a877
commit
f2b44f65d9
1 changed files with 2 additions and 1 deletions
|
@ -1142,7 +1142,8 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
// Set running to false since this thread will exit here and notifyConnectionError() will wait until
|
// Set running to false since this thread will exit here and notifyConnectionError() will wait until
|
||||||
// the reader and writer thread's 'running' value is false.
|
// the reader and writer thread's 'running' value is false. Hence we need to set it to false before calling
|
||||||
|
// notifyConnetctionError() below, even though run() also sets it to false. Therefore, do not remove this.
|
||||||
running = false;
|
running = false;
|
||||||
|
|
||||||
String ignoreReasonThread = null;
|
String ignoreReasonThread = null;
|
||||||
|
|
Loading…
Reference in a new issue