1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-22 21:23:21 +00:00

Fix incorrect shadowing

This commit is contained in:
SquidDev 2020-05-16 10:19:25 +01:00
parent f36f532c63
commit e02ccdcb1a

View File

@ -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 );
}