You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2008/01/14 17:28:06 UTC

svn commit: r611847 - in /incubator/cxf/branches/2.0.x-fixes: ./ rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/XmlType.java

Author: dkulp
Date: Mon Jan 14 08:27:58 2008
New Revision: 611847

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

........
  r610653 | bimargulies | 2008-01-09 22:01:39 -0500 (Wed, 09 Jan 2008) | 2 lines
  
  Turn off xs:any via 'extensibleElements' by default.
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/XmlType.java

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

Modified: incubator/cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/XmlType.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/XmlType.java?rev=611847&r1=611846&r2=611847&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/XmlType.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/XmlType.java Mon Jan 14 08:27:58 2008
@@ -36,5 +36,5 @@
 
     boolean extensibleElements() default true;
 
-    boolean extensibleAttributes() default true;
+    boolean extensibleAttributes() default false;
 }