You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2012/07/25 09:21:20 UTC

svn commit: r1365478 - /axis/axis2/java/core/trunk/modules/jibx/src/test/java/org/apache/axis2/jibx/handler/OMSourcedElementChecker.java

Author: veithen
Date: Wed Jul 25 07:21:19 2012
New Revision: 1365478

URL: http://svn.apache.org/viewvc?rev=1365478&view=rev
Log:
Adapted to change r1365274 in Axiom.

Modified:
    axis/axis2/java/core/trunk/modules/jibx/src/test/java/org/apache/axis2/jibx/handler/OMSourcedElementChecker.java

Modified: axis/axis2/java/core/trunk/modules/jibx/src/test/java/org/apache/axis2/jibx/handler/OMSourcedElementChecker.java
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/jibx/src/test/java/org/apache/axis2/jibx/handler/OMSourcedElementChecker.java?rev=1365478&r1=1365477&r2=1365478&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/jibx/src/test/java/org/apache/axis2/jibx/handler/OMSourcedElementChecker.java (original)
+++ axis/axis2/java/core/trunk/modules/jibx/src/test/java/org/apache/axis2/jibx/handler/OMSourcedElementChecker.java Wed Jul 25 07:21:19 2012
@@ -55,7 +55,7 @@ public class OMSourcedElementChecker ext
         OMCloneOptions options = new OMCloneOptions();
         options.setCopyOMDataSources(true);
         boolean oldExpanded = element.isExpanded();
-        OMSourcedElement clone = (OMSourcedElement)element.cloneOMElement(options);
+        OMSourcedElement clone = (OMSourcedElement)element.clone(options);
         if (element.isExpanded() != oldExpanded) {
             throw new AxisFault("Ooops! Accidentally expanded the original OMSourcedElement; this is unexpected...");
         }