You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/03/13 16:16:43 UTC

[camel] 02/09: CAMEL-17763: cleaned up unused exceptions in camel-atom

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 9e29e76b63be2d451f9c79f99e290b96d620252e
Author: Otavio R. Piske <an...@gmail.com>
AuthorDate: Sun Mar 13 14:34:37 2022 +0100

    CAMEL-17763: cleaned up unused exceptions in camel-atom
---
 .../src/test/java/org/apache/camel/component/atom/JettyTestServer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-atom/src/test/java/org/apache/camel/component/atom/JettyTestServer.java b/components/camel-atom/src/test/java/org/apache/camel/component/atom/JettyTestServer.java
index 9547044..2c2d95e 100644
--- a/components/camel-atom/src/test/java/org/apache/camel/component/atom/JettyTestServer.java
+++ b/components/camel-atom/src/test/java/org/apache/camel/component/atom/JettyTestServer.java
@@ -127,7 +127,7 @@ public final class JettyTestServer {
         private static final long serialVersionUID = 5594945031962091041L;
 
         @Override
-        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
+        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
             resp.getWriter().write(FileUtils.readFileToString(new File("src/test/data/feed.atom"),
                     StandardCharsets.UTF_8));
         }