This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new a54fb645f3 Marker class should be static a54fb645f3 is described below commit a54fb645f39ac40dc8cdae4aba305ebede981cbe Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue May 13 11:33:14 2025 +0100 Marker class should be static --- java/jakarta/el/ELResolver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/jakarta/el/ELResolver.java b/java/jakarta/el/ELResolver.java index d650069cb0..becf8051c7 100644 --- a/java/jakarta/el/ELResolver.java +++ b/java/jakarta/el/ELResolver.java @@ -144,9 +144,9 @@ public abstract class ELResolver { * The EL implementation is required to set this key with the value {@code Boolean#TRUE} when resolving a single, * stand-alone identifier. * - * @since Jakarta Expression Language 6.1 + * @since EL 6.1 */ - public class StandaloneIdentifierMarker { + public static class StandaloneIdentifierMarker { private StandaloneIdentifierMarker() { // Non-public default constructor as there is no need to create instances of this class. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org