Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 20644 invoked by uid 500); 6 Dec 2002 13:45:29 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 20602 invoked by uid 500); 6 Dec 2002 13:45:29 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 6 Dec 2002 13:45:27 -0000 Message-ID: <20021206134527.699.qmail@icarus.apache.org> From: dims@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser BeanSerializer.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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); }