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 2023/01/18 18:24:22 UTC

[tomcat] branch 10.1.x updated: Add missing "Not implemented" exception.

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

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


The following commit(s) were added to refs/heads/10.1.x by this push:
     new 257125c5eb Add missing "Not implemented" exception.
257125c5eb is described below

commit 257125c5ebead528993d30c2f8c123b045483a51
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Jan 18 18:11:29 2023 +0000

    Add missing "Not implemented" exception.
---
 test/org/apache/catalina/filters/TesterHttpServletRequest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/org/apache/catalina/filters/TesterHttpServletRequest.java b/test/org/apache/catalina/filters/TesterHttpServletRequest.java
index 1e733c8caf..e4350e1d89 100644
--- a/test/org/apache/catalina/filters/TesterHttpServletRequest.java
+++ b/test/org/apache/catalina/filters/TesterHttpServletRequest.java
@@ -73,8 +73,8 @@ public class TesterHttpServletRequest implements HttpServletRequest {
     }
 
     @Override
-    public void setCharacterEncoding(String env)
-            throws UnsupportedEncodingException {
+    public void setCharacterEncoding(String env) throws UnsupportedEncodingException {
+        throw new RuntimeException("Not implemented");
     }
 
     @Override


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