[core] Fix typo in javadoc

This commit is contained in:
Florian Schmaus 2022-04-30 15:15:51 +02:00
parent 1f5326abb2
commit 881ebe731d
1 changed files with 1 additions and 1 deletions

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 * 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 * 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()} * 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. * to proceed.
*/ */
private final Object internalMonitor = new Object(); private final Object internalMonitor = new Object();