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:39:53 UTC

[tomcat] branch 9.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 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 6dc5706  Remove explicit exception declaration not in spec API.
6dc5706 is described below

commit 6dc5706380463096e9442c3bfc40cad4eb9a863b
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