Skip to content

Commit

Permalink
JENKINS-37566 - Modification of Channel#dumpDiagnostics() actually is…
Browse files Browse the repository at this point in the history
… not required after the merge of jenkinsci#122
  • Loading branch information
oleg-nenashev committed Oct 25, 2016
1 parent 114a549 commit 426ddb3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/hudson/remoting/Channel.java
Original file line number Diff line number Diff line change
Expand Up @@ -1244,8 +1244,7 @@ public void dumpDiagnostics(@Nonnull PrintWriter w) throws IOException {
w.printf(" Last command sent=%s%n", new Date(lastCommandSentAt));
w.printf(" Last command received=%s%n", new Date(lastCommandReceivedAt));

// TODO: Update after the merge to 3.x branch, where the Hashtable is going to be replaced as a part of
// https://github.com/jenkinsci/remoting/pull/109
// TODO: Synchronize when Hashtable gets replaced by a modern collection.
w.printf(" Pending calls=%d%n", pendingCalls.size());
}

Expand Down

0 comments on commit 426ddb3

Please sign in to comment.