Skip to content

Commit

Permalink
Better local variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
lutovich committed Sep 18, 2018
1 parent ce7d2d7 commit 10c2a5b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -174,8 +174,8 @@ private Optional<URI> httpConnectorUri( String scheme, Encryption encryption )


private URI connectorUri( String scheme, Connector connector ) private URI connectorUri( String scheme, Connector connector )
{ {
HostnamePort boltHostNamePort = connectorPortRegister.getLocalAddress( connector.key() ); HostnamePort hostPort = connectorPortRegister.getLocalAddress( connector.key() );
return URI.create( scheme + "://" + boltHostNamePort + "/" ); return URI.create( scheme + "://" + hostPort + "/" );
} }


private static ConnectorPortRegister connectorPortRegister( NeoServer server ) private static ConnectorPortRegister connectorPortRegister( NeoServer server )
Expand Down

0 comments on commit 10c2a5b

Please sign in to comment.