This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 17d3582900 Fix backport. length property on arrays only available from
EL 6.
17d3582900 is described below
commit 17d358290019615c18977a853e089dfb1b318ca7
Author: Mark Thomas <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]