You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by aj...@apache.org on 2006/01/17 04:17:43 UTC

svn commit: r369653 - /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/DatabindingTemplate.xsl

Author: ajith
Date: Mon Jan 16 19:17:36 2006
New Revision: 369653

URL: http://svn.apache.org/viewcvs?rev=369653&view=rev
Log:
Fixed a minor error in the "none" part of the template

Modified:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/DatabindingTemplate.xsl

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/DatabindingTemplate.xsl
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/DatabindingTemplate.xsl?rev=369653&r1=369652&r2=369653&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/DatabindingTemplate.xsl (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/DatabindingTemplate.xsl Mon Jan 16 19:17:36 2006
@@ -225,7 +225,7 @@
 
            private org.apache.axis2.soap.SOAPEnvelope toEnvelope(org.apache.axis2.soap.SOAPFactory factory, org.apache.axis2.om.OMElement param){
                 org.apache.axis2.soap.SOAPEnvelope envelope = factory.getDefaultEnvelope();
-                envelope.getBody().addChild(param));
+                envelope.getBody().addChild(param);
                 return envelope;
            }
        </xsl:template>