This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new c8ffc35997 Add missing "Not implemented" exception. c8ffc35997 is described below commit c8ffc359972acc9bfbf3c1300b9055bbb0c41ccf 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 d486519f48..79b4237376 100644 --- a/test/org/apache/catalina/filters/TesterHttpServletRequest.java +++ b/test/org/apache/catalina/filters/TesterHttpServletRequest.java @@ -72,8 +72,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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org