diff --git a/pom.xml b/pom.xml index 1992e0ca5..971493a58 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ THE SOFTWARE. org.jenkins-ci jenkins - 1.108 + 1.109 diff --git a/src/main/java/org/jenkinsci/remoting/engine/Jnlp4ConnectionState.java b/src/main/java/org/jenkinsci/remoting/engine/Jnlp4ConnectionState.java index 4a91e032e..544d14767 100644 --- a/src/main/java/org/jenkinsci/remoting/engine/Jnlp4ConnectionState.java +++ b/src/main/java/org/jenkinsci/remoting/engine/Jnlp4ConnectionState.java @@ -45,7 +45,10 @@ public class Jnlp4ConnectionState extends JnlpConnectionState { private X509Certificate certificate; /** - * {@inheritDoc} + * Constructor. + * + * @param socket the {@link Socket}. + * @param listeners the {@link JnlpConnectionStateListener} instances. */ protected Jnlp4ConnectionState(@NonNull Socket socket, List listeners) { diff --git a/src/main/java/org/jenkinsci/remoting/protocol/impl/ConnectionRefusalException.java b/src/main/java/org/jenkinsci/remoting/protocol/impl/ConnectionRefusalException.java index 1cdd29970..1d4cca1f9 100644 --- a/src/main/java/org/jenkinsci/remoting/protocol/impl/ConnectionRefusalException.java +++ b/src/main/java/org/jenkinsci/remoting/protocol/impl/ConnectionRefusalException.java @@ -35,15 +35,9 @@ */ public class ConnectionRefusalException extends IOException { - /** - * {@inheritDoc} - */ public ConnectionRefusalException() { } - /** - * {@inheritDoc} - */ public ConnectionRefusalException(String message) { super(message); } @@ -85,16 +79,10 @@ public ConnectionRefusalException(Throwable cause, String message, Object... arg super(String.format(message, args), cause); } - /** - * {@inheritDoc} - */ public ConnectionRefusalException(String message, Throwable cause) { super(message, cause); } - /** - * {@inheritDoc} - */ public ConnectionRefusalException(Throwable cause) { super(cause); } diff --git a/src/main/java/org/jenkinsci/remoting/protocol/impl/PermanentConnectionRefusalException.java b/src/main/java/org/jenkinsci/remoting/protocol/impl/PermanentConnectionRefusalException.java index 7b8898a24..06c4d568a 100644 --- a/src/main/java/org/jenkinsci/remoting/protocol/impl/PermanentConnectionRefusalException.java +++ b/src/main/java/org/jenkinsci/remoting/protocol/impl/PermanentConnectionRefusalException.java @@ -30,44 +30,26 @@ */ @Deprecated public class PermanentConnectionRefusalException extends ConnectionRefusalException { - /** - * {@inheritDoc} - */ public PermanentConnectionRefusalException() { super(); } - /** - * {@inheritDoc} - */ public PermanentConnectionRefusalException(String message) { super(message); } - /** - * {@inheritDoc} - */ public PermanentConnectionRefusalException(String message, Object... args) { super(message, args); } - /** - * {@inheritDoc} - */ public PermanentConnectionRefusalException(Throwable cause, String message, Object... args) { super(cause, message, args); } - /** - * {@inheritDoc} - */ public PermanentConnectionRefusalException(String message, Throwable cause) { super(message, cause); } - /** - * {@inheritDoc} - */ public PermanentConnectionRefusalException(Throwable cause) { super(cause); }