You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by kn...@apache.org on 2009/01/21 05:43:17 UTC

svn commit: r736209 - /xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XSElementDecl.java

Author: knoaman
Date: Tue Jan 20 20:43:17 2009
New Revision: 736209

URL: http://svn.apache.org/viewvc?rev=736209&view=rev
Log:
Use the proper add method

Modified:
    xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XSElementDecl.java

Modified: xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XSElementDecl.java
URL: http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XSElementDecl.java?rev=736209&r1=736208&r2=736209&view=diff
==============================================================================
--- xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XSElementDecl.java (original)
+++ xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XSElementDecl.java Tue Jan 20 20:43:17 2009
@@ -405,7 +405,7 @@
         if (fAnnotations == XSObjectListImpl.EMPTY_LIST) {
             fAnnotations = new XSObjectListImpl();
         }
-        ((XSObjectListImpl)fAnnotations).add(annotation);        
+        ((XSObjectListImpl)fAnnotations).addXSObject(annotation);        
     }    
     
     /**



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org