This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 492bedc6f92bb000ac29953d04b21a33181e5a1b 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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org