Author: veithen Date: Sun Oct 10 15:40:23 2010 New Revision: 1006309 URL: http://svn.apache.org/viewvc?rev=1006309&view=rev Log: WSCOMMONS-556: Removed a method introduced in r1002759, but that is actually never used and the meaning of which is not clear.
Modified: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/NodeImpl.java Modified: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/NodeImpl.java URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/NodeImpl.java?rev=1006309&r1=1006308&r2=1006309&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/NodeImpl.java (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/NodeImpl.java Sun Oct 10 15:40:23 2010 @@ -778,17 +778,6 @@ public abstract class NodeImpl implement return null; } - public Document getParentOwnerDocument() { - // if we have an owner simply forward the request - // otherwise ownerNode is our ownerDocument - if (isOwned()) { - return ownerNode.getParentOwnerDocument(); - } else { - return ownerNode; - } - - } - public void serialize(OutputStream output) throws XMLStreamException { XMLStreamWriter xmlStreamWriter = StAXUtils.createXMLStreamWriter(output); try {