keiron      01/12/11 04:11:00

  Modified:    src/org/apache/fop/pdf PDFCIDSystemInfo.java PDFWArray.java
  Log:
  removed some bad static things
  
  Revision  Changes    Path
  1.3       +2 -2      xml-fop/src/org/apache/fop/pdf/PDFCIDSystemInfo.java
  
  Index: PDFCIDSystemInfo.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/pdf/PDFCIDSystemInfo.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- PDFCIDSystemInfo.java     2001/07/30 20:29:29     1.2
  +++ PDFCIDSystemInfo.java     2001/12/11 12:11:00     1.3
  @@ -1,5 +1,5 @@
   /*
  - * $Id: PDFCIDSystemInfo.java,v 1.2 2001/07/30 20:29:29 tore Exp $
  + * $Id: PDFCIDSystemInfo.java,v 1.3 2001/12/11 12:11:00 keiron 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.
  @@ -15,7 +15,6 @@
    * this small object is used in the CID fonts and in the CMaps.
    */
   public class PDFCIDSystemInfo extends PDFObject {
  -    private static final StringBuffer p = new StringBuffer();
       protected String registry;
       protected String ordering;
       protected int supplement;
  @@ -40,6 +39,7 @@
       }
   
       public String toPDFString() {
  +        StringBuffer p = new StringBuffer();
           p.setLength(0);
           p.append("/CIDSystemInfo << /Registry (");
           p.append(registry);
  
  
  
  1.6       +1 -2      xml-fop/src/org/apache/fop/pdf/PDFWArray.java
  
  Index: PDFWArray.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/pdf/PDFWArray.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- PDFWArray.java    2001/11/02 11:06:07     1.5
  +++ PDFWArray.java    2001/12/11 12:11:00     1.6
  @@ -1,5 +1,5 @@
   /*
  - * $Id: PDFWArray.java,v 1.5 2001/11/02 11:06:07 keiron Exp $
  + * $Id: PDFWArray.java,v 1.6 2001/12/11 12:11:00 keiron 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.
  @@ -90,7 +90,6 @@
        * inner class for entries in the form "c [w ...]"
        */
       private static class Entry {
  -        private static final StringBuffer p = new StringBuffer();
           private int start;
           private int[] metrics;
           public Entry(int s, int[] m) {
  
  
  

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

Reply via email to