git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194595
13f79535-47bb-0310-9956-
ffa450edef68
* 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;
}
public String toPDFString() {
+ StringBuffer p = new StringBuffer();
p.setLength(0);
p.append("/CIDSystemInfo << /Registry (");
p.append(registry);
* 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) {