dims 2002/12/06 05:45:27
Modified: java/src/org/apache/axis/encoding/ser BeanSerializer.java
Log:
Fix for Bug 15029 - BeanSerializer.writeSchema(Class,Types) property descriptor
inheritance bug
Revision Changes Path
1.61 +1 -1
xml-axis/java/src/org/apache/axis/encoding/ser/BeanSerializer.java
Index: BeanSerializer.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/src/org/apache/axis/encoding/ser/BeanSerializer.java,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- BeanSerializer.java 4 Nov 2002 17:01:27 -0000 1.60
+++ BeanSerializer.java 6 Dec 2002 13:45:26 -0000 1.61
@@ -312,7 +312,7 @@
// Get the property descriptors for the super class
TypeDesc superTypeDesc = TypeDesc.getTypeDescForClass(superClass);
if (superTypeDesc != null) {
- superPd = typeDesc.getPropertyDescriptors();
+ superPd = superTypeDesc.getPropertyDescriptors();
} else {
superPd = BeanUtils.getPd(superClass, null);
}