You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2018/01/21 10:49:41 UTC

[camel] branch master updated: Ups Claaus. Fixed compile issue after recent change in camel-jaxb.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c8fc3e0  Ups Claaus. Fixed compile issue after recent change in camel-jaxb.
c8fc3e0 is described below

commit c8fc3e0803564a3d55a16279b290f20409f210d2
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Jan 21 11:48:44 2018 +0100

    Ups Claaus. Fixed compile issue after recent change in camel-jaxb.
---
 .../java/org/apache/camel/dataformat/soap/SoapJaxbDataFormat.java   | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/components/camel-soap/src/main/java/org/apache/camel/dataformat/soap/SoapJaxbDataFormat.java b/components/camel-soap/src/main/java/org/apache/camel/dataformat/soap/SoapJaxbDataFormat.java
index c4581d5..14c54d3 100644
--- a/components/camel-soap/src/main/java/org/apache/camel/dataformat/soap/SoapJaxbDataFormat.java
+++ b/components/camel-soap/src/main/java/org/apache/camel/dataformat/soap/SoapJaxbDataFormat.java
@@ -132,9 +132,8 @@ public class SoapJaxbDataFormat extends JaxbDataFormat {
      * 
      * To determine the name of the top level xml elements the elementNameStrategy
      * is used.
-     * @throws IOException,SAXException 
      */
-    public void marshal(Exchange exchange, Object inputObject, OutputStream stream) throws IOException, SAXException {
+    public void marshal(Exchange exchange, Object inputObject, OutputStream stream) throws IOException {
         checkElementNameStrategy(exchange);
 
         String soapAction = getSoapActionFromExchange(exchange);
@@ -261,9 +260,8 @@ public class SoapJaxbDataFormat extends JaxbDataFormat {
     
     /**
      * Unmarshal a given SOAP xml stream and return the content of the SOAP body
-     * @throws IOException,SAXException
      */
-    public Object unmarshal(Exchange exchange, InputStream stream) throws IOException, SAXException {
+    public Object unmarshal(Exchange exchange, InputStream stream) throws IOException {
         checkElementNameStrategy(exchange);
         
         String soapAction = getSoapActionFromExchange(exchange);

-- 
To stop receiving notification emails like this one, please contact
['"commits@camel.apache.org" <co...@camel.apache.org>'].