You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by zi...@apache.org on 2003/12/08 21:49:06 UTC

cvs commit: xml-xmlbeans/v2/src/marshal/org/apache/xmlbeans/impl/marshal UnmarshalContextImpl.java

zieg        2003/12/08 12:49:06

  Modified:    v2/src/marshal/org/apache/xmlbeans/impl/marshal
                        UnmarshalContextImpl.java
  Log:
  fix IllegalArgumentException when using alternate ctor
  
  Revision  Changes    Path
  1.8       +1 -1      xml-xmlbeans/v2/src/marshal/org/apache/xmlbeans/impl/marshal/UnmarshalContextImpl.java
  
  Index: UnmarshalContextImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xmlbeans/v2/src/marshal/org/apache/xmlbeans/impl/marshal/UnmarshalContextImpl.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- UnmarshalContextImpl.java	8 Dec 2003 07:16:35 -0000	1.7
  +++ UnmarshalContextImpl.java	8 Dec 2003 20:49:06 -0000	1.8
  @@ -111,12 +111,12 @@
                            RuntimeBindingTypeTable typeTable,
                            Collection errors)
       {
  -        this.baseReader = createExtendedReader(reader);
           this.bindingLoader = bindingLoader;
           this.errors = errors;
           this.typeTable = typeTable;
   
           if (reader != null) {
  +            this.baseReader = createExtendedReader(reader);
               updateAttributeState();
           }
       }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xmlbeans-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xmlbeans-cvs-help@xml.apache.org