mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 02:22:05 +01:00
[core] Fix typo in javadoc
This commit is contained in:
parent
1f5326abb2
commit
881ebe731d
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
|
|||
* We use an extra object for {@link #notifyWaitingThreads()} and {@link #waitFor(Supplier)}, because all state
|
||||
* changing methods of the connection are synchronized using the connection instance as monitor. If we now would
|
||||
* also use the connection instance for the internal process to wait for a condition, the {@link Object#wait()}
|
||||
* would leave the monitor when it waites, which would allow for another potential call to a state changing function
|
||||
* would leave the monitor when it waits, which would allow for another potential call to a state changing function
|
||||
* to proceed.
|
||||
*/
|
||||
private final Object internalMonitor = new Object();
|
||||
|
|
Loading…
Reference in a new issue