1
0
Fork 0
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:
Florian Schmaus 2022-04-30 15:15:51 +02:00
parent 1f5326abb2
commit 881ebe731d

View file

@ -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();