This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new 055a0ff688 Fix backport. length property on arrays only available from EL 6. 055a0ff688 is described below commit 055a0ff688720a864a85bb0ec715ae43bb551f7b Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Apr 17 10:47:34 2025 +0100 Fix backport. length property on arrays only available from EL 6. --- test/webapp/bug6nnnn/bug69635.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/webapp/bug6nnnn/bug69635.jsp b/test/webapp/bug6nnnn/bug69635.jsp index 2d2a2411a5..88c09574e9 100644 --- a/test/webapp/bug6nnnn/bug69635.jsp +++ b/test/webapp/bug6nnnn/bug69635.jsp @@ -15,4 +15,4 @@ limitations under the License. --%> <%@page import="org.apache.catalina.authenticator.DigestAuthenticator.AuthDigest"%> -<p>01-${ AuthDigest.values().length }</p> +<p>01-${ AuthDigest.values().stream().count() }</p> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org