[jbossws-commits] JBossWS SVN: r14336 - in stack/native/branches/jbossws-native-3.1.2.SP9: modules/core/src/main/java/org/jboss/ws/core/soap and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Tue May 10 02:35:49 EDT 2011


Author: alessio.soldano at jboss.com
Date: 2011-05-10 02:35:49 -0400 (Tue, 10 May 2011)
New Revision: 14336

Modified:
   stack/native/branches/jbossws-native-3.1.2.SP9/
   stack/native/branches/jbossws-native-3.1.2.SP9/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPFactoryImpl.java
Log:
svn merge -r 14326:14327



Property changes on: stack/native/branches/jbossws-native-3.1.2.SP9
___________________________________________________________________
Added: svn:mergeinfo
   + /stack/native/branches/jbossws-native-3.1.2:14327

Modified: stack/native/branches/jbossws-native-3.1.2.SP9/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPFactoryImpl.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP9/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPFactoryImpl.java	2011-05-10 06:09:33 UTC (rev 14335)
+++ stack/native/branches/jbossws-native-3.1.2.SP9/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPFactoryImpl.java	2011-05-10 06:35:49 UTC (rev 14336)
@@ -118,8 +118,7 @@
       String prefix = domElement.getPrefix() != null ? domElement.getPrefix() : "";
       String nsURI = domElement.getNamespaceURI() != null ? domElement.getNamespaceURI() : "";
 
-      SOAPFactory factory = SOAPFactory.newInstance();
-      SOAPElement soapElement = factory.createElement(localName, prefix, nsURI);
+      SOAPElement soapElement = this.createElement(localName, prefix, nsURI);
 
       DOMUtils.copyAttributes(soapElement, domElement);
 



More information about the jbossws-commits mailing list