Skip to content

Commit

Permalink
Bump org.jenkins-ci:jenkins from 1.108 to 1.109 (#714)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jan 5, 2024
1 parent 71f9f11 commit 94ce994
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 32 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ THE SOFTWARE.
<parent>
<groupId>org.jenkins-ci</groupId>
<artifactId>jenkins</artifactId>
<version>1.108</version>
<version>1.109</version>
<relativePath />
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<? extends JnlpConnectionStateListener> listeners) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,9 @@
*/
public class ConnectionRefusalException extends IOException {

/**
* {@inheritDoc}
*/
public ConnectionRefusalException() {
}

/**
* {@inheritDoc}
*/
public ConnectionRefusalException(String message) {
super(message);
}
Expand Down Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 94ce994

Please sign in to comment.