fixed removal of deprecated methods

This commit is contained in:
gregw 2024-08-07 12:53:19 +10:00
parent da5f09f1ce
commit 5993364288
4 changed files with 0 additions and 5 deletions

View File

@ -30,8 +30,6 @@ import org.eclipse.jetty.util.annotation.Name;
public class HttpConnectionFactory extends AbstractConnectionFactory implements HttpConfiguration.ConnectionFactory
{
private final HttpConfiguration _config;
private boolean _useInputDirectByteBuffers;
private boolean _useOutputDirectByteBuffers;
public HttpConnectionFactory()
{

View File

@ -109,7 +109,6 @@ public class ComplianceViolations2616Test
config.addComplianceViolationListener(new ComplianceViolation.CapturingListener());
HttpConnectionFactory httpConnectionFactory = new HttpConnectionFactory(config);
httpConnectionFactory.setRecordHttpComplianceViolations(true);
connector = new LocalConnector(server, null, null, null, -1, httpConnectionFactory);
ServletContextHandler context = new ServletContextHandler();

View File

@ -109,7 +109,6 @@ public class ComplianceViolations2616Test
config.addComplianceViolationListener(new ComplianceViolation.CapturingListener());
HttpConnectionFactory httpConnectionFactory = new HttpConnectionFactory(config);
httpConnectionFactory.setRecordHttpComplianceViolations(true);
connector = new LocalConnector(server, null, null, null, -1, httpConnectionFactory);
ServletContextHandler context = new ServletContextHandler();

View File

@ -130,7 +130,6 @@ public class RequestTest
_server = new Server();
_context = new ContextHandler(_server);
HttpConnectionFactory http = new HttpConnectionFactory();
http.setRecordHttpComplianceViolations(true);
http.setInputBufferSize(1024);
http.getHttpConfiguration().setRequestHeaderSize(512);
http.getHttpConfiguration().setResponseHeaderSize(512);