stevel 2003/01/13 22:40:53
Modified: java/src/org/apache/axis AxisFault.java
Log:
changed method to clear the existing faultDetails on a null array
Revision Changes Path
1.66 +1 -1 xml-axis/java/src/org/apache/axis/AxisFault.java
Index: AxisFault.java
===================================================================
RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/AxisFault.java,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- AxisFault.java 30 Dec 2002 07:17:27 -0000 1.65
+++ AxisFault.java 14 Jan 2003 06:40:53 -0000 1.66
@@ -530,7 +530,7 @@
*/
public void setFaultDetail(Element[] details) {
if ( details == null ) {
- //TODO: shouldnt we reset fault details here anyway?
+ faultDetails=null;
return ;
}
faultDetails = new Vector( details.length );