Skip to content

Commit

Permalink
Fix auto-boxing warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Nov 15, 2024
1 parent 8ad1a56 commit 1275c60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/org/apache/catalina/storeconfig/TestStoreConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,22 @@ public void testListener() throws Exception {
org.apache.catalina.core.StandardThreadExecutor tc_StandardThreadExecutor_14 = new org.apache.catalina.core.StandardThreadExecutor();
tc_StandardThreadExecutor_14.setName("tomcatThreadPool");
tc_StandardThreadExecutor_14.setNamePrefix("catalina-exec-");
tc_StandardThreadExecutor_14.setMaxThreads(Integer.valueOf("150"));
tc_StandardThreadExecutor_14.setMinSpareThreads(Integer.valueOf("4"));
tc_StandardThreadExecutor_14.setMaxThreads(Integer.parseInt("150"));
tc_StandardThreadExecutor_14.setMinSpareThreads(Integer.parseInt("4"));
tomcat.getService().addExecutor(tc_StandardThreadExecutor_14);

org.apache.coyote.http2.Http2Protocol tc_Http2Protocol_17 = new org.apache.coyote.http2.Http2Protocol();
tomcat.getConnector().addUpgradeProtocol(tc_Http2Protocol_17);
tomcat.getConnector().setProperty("SSLEnabled", "true");
tomcat.getConnector().setScheme("https");
tomcat.getConnector().setSecure(Boolean.valueOf("true"));
tomcat.getConnector().setSecure(Boolean.parseBoolean("true"));
tomcat.getConnector().setThrowOnFailure(false);
tomcat.getConnector().getProtocolHandler().setExecutor(tomcat.getService().getExecutor("tomcatThreadPool"));

org.apache.tomcat.util.net.SSLHostConfig tc_SSLHostConfig_22 = new org.apache.tomcat.util.net.SSLHostConfig();
tc_SSLHostConfig_22.setProtocols("TLSv1.1+TLSv1.2");
tc_SSLHostConfig_22.setCertificateVerification("optionalNoCA");
tc_SSLHostConfig_22.setCertificateVerificationDepth(Integer.valueOf("3"));
tc_SSLHostConfig_22.setCertificateVerificationDepth(Integer.parseInt("3"));
org.apache.tomcat.util.net.SSLHostConfigCertificate tc_SSLHostConfigCertificate_23 =
new org.apache.tomcat.util.net.SSLHostConfigCertificate(tc_SSLHostConfig_22,
org.apache.tomcat.util.net.SSLHostConfigCertificate.Type.RSA);
Expand Down

0 comments on commit 1275c60

Please sign in to comment.