Skip to content

Commit

Permalink
#8161 fix checkstyle
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Orban <lorban@bitronix.be>
  • Loading branch information
lorban committed Jun 15, 2022
1 parent e2e22d4 commit eaffde4
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -53,17 +53,17 @@ public LocalConnector(Server server)

public LocalConnector(Server server, SslContextFactory.Server sslContextFactory)
{
this(server, null, null, null, null,-1, AbstractConnectionFactory.getFactories(sslContextFactory, new HttpConnectionFactory()));
this(server, null, null, null, null, -1, AbstractConnectionFactory.getFactories(sslContextFactory, new HttpConnectionFactory()));
}

public LocalConnector(Server server, ConnectionFactory connectionFactory)
{
this(server, null, null, null, null,-1, connectionFactory);
this(server, null, null, null, null, -1, connectionFactory);
}

public LocalConnector(Server server, ConnectionFactory connectionFactory, SslContextFactory.Server sslContextFactory)
{
this(server, null, null, null, null,-1, AbstractConnectionFactory.getFactories(sslContextFactory, connectionFactory));
this(server, null, null, null, null, -1, AbstractConnectionFactory.getFactories(sslContextFactory, connectionFactory));
}

public LocalConnector(Server server, Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories)
Expand Down

0 comments on commit eaffde4

Please sign in to comment.