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 b3c083a  Remove explicit exception declaration not in spec API.
b3c083a is described below

commit b3c083ac20bd2d1e1ef879df24aa0bca465b727b
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue May 26 17:24:00 2020 +0100

    Remove explicit exception declaration not in spec API.
    
    When testing with Java 8 this doesn't matter but when testing with Java
    11 this triggers a TCK failure
---
 java/jakarta/servlet/jsp/JspApplicationContext.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/jakarta/servlet/jsp/JspApplicationContext.java 
b/java/jakarta/servlet/jsp/JspApplicationContext.java
index 2cfaa4e..11886fe 100644
--- a/java/jakarta/servlet/jsp/JspApplicationContext.java
+++ b/java/jakarta/servlet/jsp/JspApplicationContext.java
@@ -65,7 +65,7 @@ public interface JspApplicationContext {
      *             if called after the application's
      *             <code>ServletContextListeners</code> have been initialized.
      */
-    public void addELResolver(ELResolver resolver) throws 
IllegalStateException;
+    public void addELResolver(ELResolver resolver);
 
     /**
      * <p>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to