rsitze 2002/10/18 15:01:44 Modified: java/src/org/apache/axis SOAPPart.java java/src/javax/xml/soap SOAPEnvelope.java Log: Minor cleanup Revision Changes Path 1.50 +0 -1 xml-axis/java/src/org/apache/axis/SOAPPart.java Index: SOAPPart.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/SOAPPart.java,v retrieving revision 1.49 retrieving revision 1.50 diff -u -r1.49 -r1.50 --- SOAPPart.java 22 Sep 2002 18:27:50 -0000 1.49 +++ SOAPPart.java 18 Oct 2002 22:01:43 -0000 1.50 @@ -483,7 +483,6 @@ if ( currentForm == FORM_SOAPENVELOPE ) { StringWriter writer = new StringWriter(); - SOAPEnvelope env = (SOAPEnvelope)currentMessage; try { this.writeTo(writer); } catch (Exception e) { 1.3 +2 -2 xml-axis/java/src/javax/xml/soap/SOAPEnvelope.java Index: SOAPEnvelope.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/javax/xml/soap/SOAPEnvelope.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SOAPEnvelope.java 16 Jun 2002 19:36:54 -0000 1.2 +++ SOAPEnvelope.java 18 Oct 2002 22:01:44 -0000 1.3 @@ -85,8 +85,8 @@ * <P>It is possible to change the body or header of a <CODE> * SOAPEnvelope</CODE> object by retrieving the current one, * deleting it, and then adding a new body or header. The <CODE> - * javax.xml.soap.Node</CODE> method <CODE>deleteNode</CODE> - * deletes the XML element (node) on which it is called. For + * javax.xml.soap.Node</CODE> method <CODE>detachNode</CODE> + * detaches the XML element (node) on which it is called. For * example, the following line of code deletes the <CODE> * SOAPBody</CODE> object that is retrieved by the method <CODE> * getBody</CODE>.</P>