diff --git a/core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessage.java b/core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessage.java index 86952092..db9e6bdb 100644 --- a/core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessage.java +++ b/core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessage.java @@ -101,9 +101,7 @@ public class AxiomSoapMessage extends AbstractSoapMessage { this.payloadCaching = payloadCaching; } - /** - * Return the AXIOM SOAPMessage that this AxiomSoapMessage is based on. - */ + /** Return the AXIOM SOAPMessage that this AxiomSoapMessage is based on. */ public final SOAPMessage getAxiomMessage() { return axiomMessage; } @@ -171,9 +169,7 @@ public class AxiomSoapMessage extends AbstractSoapMessage { } } - /** - * Axiom-specific implementation of org.springframework.ws.soap.Attachment - */ + /** Axiom-specific implementation of org.springframework.ws.soap.Attachment */ private static class AxiomAttachment implements Attachment { private final DataHandler dataHandler; @@ -204,7 +200,7 @@ public class AxiomSoapMessage extends AbstractSoapMessage { } public long getSize() { - throw new UnsupportedOperationException("Axiom does not support setting the Content-ID of attachments."); + throw new UnsupportedOperationException("Axiom does not support getting the size of attachments."); } }