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 pb...@apache.org on 2002/10/03 05:37:27 UTC

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

pbwest      2002/10/02 20:37:27

  Modified:    src/org/apache/fop/xml Tag: FOP_0-20-0_Alt-Design
                        SyncedXmlEventsBuffer.java
  Log:
  Rethrow InterruptedException directly.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.2   +4 -3      xml-fop/src/org/apache/fop/xml/Attic/SyncedXmlEventsBuffer.java
  
  Index: SyncedXmlEventsBuffer.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/xml/Attic/SyncedXmlEventsBuffer.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- SyncedXmlEventsBuffer.java	16 Sep 2002 04:20:24 -0000	1.1.2.1
  +++ SyncedXmlEventsBuffer.java	3 Oct 2002 03:37:26 -0000	1.1.2.2
  @@ -72,7 +72,7 @@
               //System.out.println("getEvent: " + ev);
               return ev;
           } catch (InterruptedException e) {
  -            throw new FOPException("InterruptedException");
  +            throw new FOPException(e);
           }
       }
   
  @@ -221,6 +221,7 @@
       public XMLEvent expectStartElement(int uriIndex, String localName)
           throws FOPException
       {
  +        //System.out.println("In expectStartElement..................");
           XMLEvent ev = getEvent();
           if (ev != null &&
               (ev.type == XMLEvent.STARTELEMENT
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org