You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by jo...@locus.apache.org on 2000/06/21 03:18:04 UTC

cvs commit: xml-fop/src/org/apache/fop/apps Driver.java

jordan      00/06/20 18:18:04

  Modified:    src/org/apache/fop/apps Driver.java
  Log:
  Added ability for render() to throw FOPException
  
  Revision  Changes    Path
  1.7       +2 -2      xml-fop/src/org/apache/fop/apps/Driver.java
  
  Index: Driver.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/Driver.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Driver.java	1999/11/29 19:04:05	1.6
  +++ Driver.java	2000/06/21 01:18:03	1.7
  @@ -1,4 +1,4 @@
  -/*-- $Id: Driver.java,v 1.6 1999/11/29 19:04:05 jtauber Exp $ -- 
  +/*-- $Id: Driver.java,v 1.7 2000/06/21 01:18:03 jordan Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -349,7 +349,7 @@
        * render the area tree to the output form
        */
       public void render()
  -	throws IOException {
  +	throws IOException, FOPException {
   	this.renderer.render(areaTree, this.writer);
       }
   }