remm        01/05/06 10:45:37

  Modified:    src/webdav/server/org/apache/slide/webdav/logger
                        XMLTestCaseGenerator.java
  Log:
  - Catch Exception instead of IOException to prevent a build failure with Gump.
    It probably is caused by a small API change in JDOM.
  
  Revision  Changes    Path
  1.4       +1 -1      
jakarta-slide/src/webdav/server/org/apache/slide/webdav/logger/XMLTestCaseGenerator.java
  
  Index: XMLTestCaseGenerator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/logger/XMLTestCaseGenerator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XMLTestCaseGenerator.java 2001/05/04 14:51:45     1.3
  +++ XMLTestCaseGenerator.java 2001/05/06 17:45:37     1.4
  @@ -126,7 +126,7 @@
           root.addContent( printXMLstep() );
           try {
               result = xmlOut.outputString( doc.getRootElement().getChild("step") );
  -        } catch ( IOException e ) {
  +        } catch ( Exception e ) {
               e.printStackTrace();
           }
           return result;
  
  
  

Reply via email to