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 10:40:31 UTC

svn commit: r1149499 - /webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMElementImpl.java

Author: veithen
Date: Fri Jul 22 08:40:30 2011
New Revision: 1149499

URL: http://svn.apache.org/viewvc?rev=1149499&view=rev
Log:
Eliminated some illegal references to OMAbstractFactory inside LLOM.

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMElementImpl.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMElementImpl.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMElementImpl.java?rev=1149499&r1=1149498&r2=1149499&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMElementImpl.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMElementImpl.java Fri Jul 22 08:40:30 2011
@@ -20,7 +20,6 @@
 package org.apache.axiom.om.impl.llom;
 
 import org.apache.axiom.attachments.Attachments;
-import org.apache.axiom.om.OMAbstractFactory;
 import org.apache.axiom.om.OMAttribute;
 import org.apache.axiom.om.OMConstants;
 import org.apache.axiom.om.OMContainer;
@@ -771,7 +770,7 @@ public class OMElementImpl extends OMNod
             child = child.getNextOMSibling();
         }
 
-        OMAbstractFactory.getOMFactory().createOMText(this, text);
+        getOMFactory().createOMText(this, text);
     }
 
     /**
@@ -788,7 +787,7 @@ public class OMElementImpl extends OMNod
             child = child.getNextOMSibling();
         }
 
-        OMAbstractFactory.getOMFactory().createOMText(this, text);
+        getOMFactory().createOMText(this, text);
     }
 
     /**