tore        01/11/16 11:40:32

  Modified:    src/org/apache/fop/pdf PDFDocument.java
  Log:
  Fixed bug in makePDFICCStream
  
  Revision  Changes    Path
  1.36      +2 -2      xml-fop/src/org/apache/fop/pdf/PDFDocument.java
  
  Index: PDFDocument.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/pdf/PDFDocument.java,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- PDFDocument.java  2001/11/16 19:36:40     1.35
  +++ PDFDocument.java  2001/11/16 19:40:32     1.36
  @@ -1,5 +1,5 @@
   /*
  - * $Id: PDFDocument.java,v 1.35 2001/11/16 19:36:40 tore Exp $
  + * $Id: PDFDocument.java,v 1.36 2001/11/16 19:40:32 tore Exp $
    * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
    * For details on use and redistribution please refer to the
    * LICENSE file included with these sources.
  @@ -766,7 +766,7 @@
           */
       public PDFICCStream makePDFICCStream() {
           PDFICCStream iccStream = new PDFICCStream(++this.objectcount);
  -        this.objects.addElement(iccStream);
  +        this.objects.add(iccStream);
           return iccStream;
       }
       
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to