You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2020/05/26 21:42:28 UTC

[tomcat] branch 7.0.x updated: Remove explicit exception declaration not in spec API.

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/7.0.x by this push:
     new 7447876  Remove explicit exception declaration not in spec API.
7447876 is described below

commit 7447876b5ac2e63b7e8bc0e50d040ec811bfa4c2
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/javax/servlet/jsp/JspApplicationContext.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/javax/servlet/jsp/JspApplicationContext.java b/java/javax/servlet/jsp/JspApplicationContext.java
index ff0154c..3b4a2be 100644
--- a/java/javax/servlet/jsp/JspApplicationContext.java
+++ b/java/javax/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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org