Skip to content

Commit

Permalink
Fix incorrect shadowing
Browse files Browse the repository at this point in the history
  • Loading branch information
SquidDev committed May 16, 2020
1 parent f36f532 commit e02ccdc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ private void doRun()

try
{
InetSocketAddress address = NetworkUtils.getAddress( host, 80, false );
NetworkUtils.getOptions( host, address );
InetSocketAddress netAddress = NetworkUtils.getAddress( host, 80, false );
NetworkUtils.getOptions( host, netAddress );

if( tryClose() ) environment.queueEvent( EVENT, address, true );
}
Expand Down

0 comments on commit e02ccdc

Please sign in to comment.