This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push: new ec1bf10 Fix auto-boxing warning ec1bf10 is described below commit ec1bf10c3f2bf335ca8b1be9391c186c53e4c421 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Jun 6 10:13:30 2019 +0100 Fix auto-boxing warning --- test/org/apache/coyote/http2/Http2TestBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/org/apache/coyote/http2/Http2TestBase.java b/test/org/apache/coyote/http2/Http2TestBase.java index 33924a6..b095733 100644 --- a/test/org/apache/coyote/http2/Http2TestBase.java +++ b/test/org/apache/coyote/http2/Http2TestBase.java @@ -62,7 +62,7 @@ public abstract class Http2TestBase extends TomcatBaseTest { @org.junit.runners.Parameterized.Parameters public static Object[][] data() { - return new Object[Integer.getInteger("tomcat.test.http2.loopCount", 1)][0]; + return new Object[Integer.getInteger("tomcat.test.http2.loopCount", 1).intValue()][0]; } // Nothing special about this date apart from it being the date I ran the --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org