From 12bd76a0118407088e400e17ce0965601090e28d Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Sat, 16 Feb 2019 17:17:50 +0100 Subject: [PATCH] s/@since 4.4/@since 4.4.0/ --- .../main/java/org/jivesoftware/smack/XMPPConnection.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java b/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java index 8c7354a2b..c6c2db78f 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java @@ -179,7 +179,7 @@ public interface XMPPConnection { * @param stanza the stanza to send. * @return {@code true} if the stanza was successfully scheduled to be send, {@code false} otherwise. * @throws NotConnectedException if the connection is not connected. - * @since 4.4 + * @since 4.4.0 */ boolean trySendStanza(Stanza stanza) throws NotConnectedException; @@ -200,7 +200,7 @@ public interface XMPPConnection { * @return {@code true} if the stanza was successfully scheduled to be send, {@code false} otherwise. * @throws NotConnectedException if the connection is not connected. * @throws InterruptedException if the calling thread was interrupted. - * @since 4.4 + * @since 4.4.0 */ boolean trySendStanza(Stanza stanza, long timeout, TimeUnit unit) throws NotConnectedException, InterruptedException; @@ -322,7 +322,7 @@ public interface XMPPConnection { * * @param stanzaListener the stanza listener to notify of new received stanzas. * @param stanzaFilter the stanza filter to use. - * @since 4.4 + * @since 4.4.0 */ void addStanzaListener(StanzaListener stanzaListener, StanzaFilter stanzaFilter); @@ -331,7 +331,7 @@ public interface XMPPConnection { * * @param stanzaListener the stanza listener to remove. * @return true if the stanza listener was removed. - * @since 4.4 + * @since 4.4.0 */ boolean removeStanzaListener(StanzaListener stanzaListener);