Author: dsosnoski
Date: Thu Apr 20 16:43:19 2006
New Revision: 395734
URL: http://svn.apache.org/viewcvs?rev=395734&view=rev
Log:
Just return "true" for isComplete() if no tree built (since build will
otherwise be forced by serialization code)
Modified:
webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java
Modified:
webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java
URL:
http://svn.apache.org/viewcvs/webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java?rev=395734&r1=395733&r2=395734&view=diff
==============================================================================
---
webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java
(original)
+++
webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java
Thu Apr 20 16:43:19 2006
@@ -634,7 +634,7 @@
if (isParserSet) {
return super.isComplete();
} else {
- return false;
+ return true;
}
}