You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bi...@apache.org on 2009/02/21 20:55:24 UTC

svn commit: r746576 - in /cxf/branches/2.1.x-fixes: ./ rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BeanType.java

Author: bimargulies
Date: Sat Feb 21 19:55:23 2009
New Revision: 746576

URL: http://svn.apache.org/viewvc?rev=746576&view=rev
Log:
Merged revisions 746570 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r746570 | bimargulies | 2009-02-21 14:33:43 -0500 (Sat, 21 Feb 2009) | 4 lines
  
  CXF-2044.
  
  The BeanType class is has an old bear-trap that needs to be cleaned up, but here's the instant repair.
........

Modified:
    cxf/branches/2.1.x-fixes/   (props changed)
    cxf/branches/2.1.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BeanType.java

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.1.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BeanType.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BeanType.java?rev=746576&r1=746575&r2=746576&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BeanType.java (original)
+++ cxf/branches/2.1.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BeanType.java Sat Feb 21 19:55:23 2009
@@ -590,7 +590,7 @@
 
     @Override
     public long getMinOccurs() {
-        return info.getMinOccurs();
+        return getTypeInfo().getMinOccurs();
     }
 
     @Override