Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[JENKINS-19465] - Now the code even compiles
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/main/java/hudson/plugins/sshslaves/SSHLauncher.java
|
@@ -1371,7 +1371,7 @@ public void afterDisconnect(SlaveComputer slaveComputer, final TaskListener list |
|
|
tearDownConnection(slaveComputer, listener); |
|
|
} |
|
|
|
|
|
private synchronized void tearDownConnection(@Nonnull SlaveComputer slaveComputer, @Nonnull TaskListener listener) { |
|
|
private synchronized void tearDownConnection(@Nonnull SlaveComputer slaveComputer, final @Nonnull TaskListener listener) { |
|
|
if (connection != null) { |
|
|
boolean connectionLost = reportTransportLoss(connection, listener); |
|
|
if (session != null) { |
|
|