Skip to content

Commit

Permalink
Remove cast
Browse files Browse the repository at this point in the history
  • Loading branch information
arturobernalg committed Nov 16, 2024
1 parent 17395ad commit f7dcfae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void cancelled() {

void executeNext() {
final int index = attempt.getAndIncrement();
final InetSocketAddress remoteAddress = (InetSocketAddress) remoteAddresses.get(index);
final InetSocketAddress remoteAddress = remoteAddresses.get(index);

if (LOG.isDebugEnabled()) {
LOG.debug("{}:{} connecting {}->{} ({})",
Expand Down

0 comments on commit f7dcfae

Please sign in to comment.