You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2005/07/09 05:01:55 UTC

svn commit: r209923 - /webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java

Author: dims
Date: Fri Jul  8 20:01:54 2005
New Revision: 209923

URL: http://svn.apache.org/viewcvs?rev=209923&view=rev
Log:
set the parent of the rootElment correctly.

Modified:
    webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java

Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java?rev=209923&r1=209922&r2=209923&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java (original)
+++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java Fri Jul  8 20:01:54 2005
@@ -76,6 +76,7 @@
         while (rootElement == null) {
             parserWrapper.next();
         }
+        rootElement.setParent(this);
         return rootElement;
     }