You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2011/07/22 21:49:48 UTC

svn commit: r1149706 - /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMElement.java

Author: veithen
Date: Fri Jul 22 19:49:48 2011
New Revision: 1149706

URL: http://svn.apache.org/viewvc?rev=1149706&view=rev
Log:
Removed a method that was deprecated long time ago and that should never be used by application code (see AXIOM-115).

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMElement.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMElement.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMElement.java?rev=1149706&r1=1149705&r2=1149706&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMElement.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMElement.java Fri Jul 22 19:49:48 2011
@@ -311,16 +311,6 @@ public interface OMElement extends OMNod
     void setBuilder(OMXMLParserWrapper wrapper);
 
     /**
-     * Sets the first child.
-     *
-     * @param node
-     * @deprecated This method should not be called, un-intentionally. When some one randomly set
-     *             the first child, all the links handling will not happen inside this method. So we
-     *             have moved this method to the less visible interface, OMContainerEx.
-     */
-    void setFirstChild(OMNode node);
-
-    /**
      * Returns the first child element of the element.
      *
      * @return Returns the first child element of the element, or <tt>null</tt> if none was found.