dlr         2002/09/27 14:45:12

  Modified:    src/java/org/apache/xmlrpc ParseFailed.java
  Log:
  Patch by Corey Jewett <[EMAIL PROTECTED]>:
  
  Following patch seems to be necessary to compile under JDK 1.4.
  
  http://java.sun.com/j2se/1.4/docs/api/java/lang/Throwable.html#getCause()
  
  Revision  Changes    Path
  1.2       +1 -1      xml-rpc/src/java/org/apache/xmlrpc/ParseFailed.java
  
  Index: ParseFailed.java
  ===================================================================
  RCS file: /home/cvs/xml-rpc/src/java/org/apache/xmlrpc/ParseFailed.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -u -r1.1 -r1.2
  --- ParseFailed.java  26 Aug 2002 17:41:57 -0000      1.1
  +++ ParseFailed.java  27 Sep 2002 21:45:12 -0000      1.2
  @@ -78,7 +78,7 @@
           this.cause = cause;
       }
   
  -    public Exception getCause()
  +    public Throwable getCause()
       {
           return cause;
       }
  
  
  


Reply via email to