1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-10 18:59:41 +02:00

Fix javadoc warnings

This commit is contained in:
Florian Schmaus 2015-12-19 13:30:15 +01:00
parent 46f0110949
commit f79a7d9d5f
4 changed files with 8 additions and 5 deletions

View file

@ -94,7 +94,7 @@ public abstract class XMPPException extends Exception {
* @param message a description of the exception.
* @param error the root cause of the exception.
* @param wrappedThrowable the root cause of the exception.
* @deprecated use {@link XMPPErrorException(XMPPError)} instead.
* @deprecated use {@link #XMPPErrorException(XMPPError)} instead.
*/
@Deprecated
public XMPPErrorException(String message, XMPPError error, Throwable wrappedThrowable) {
@ -108,7 +108,7 @@ public abstract class XMPPException extends Exception {
*
* @param message a description of the exception.
* @param error the root cause of the exception.
* @deprecated use {@link XMPPErrorException(XMPPError)} instead.
* @deprecated use {@link #XMPPErrorException(XMPPError)} instead.
*/
@Deprecated
public XMPPErrorException(String message, XMPPError error) {

View file

@ -30,7 +30,6 @@ package org.jivesoftware.smack.packet;
* information see <a href="https://tools.ietf.org/html/rfc6120#section-8.4">RFC 6120 § 8.4 Extended Content</a>.
* </p>
*
* @see DefaultExtensionElement
* @see org.jivesoftware.smack.provider.ExtensionElementProvider
* @author Matt Tucker
*/