From 43a550c35509a8618086cf56909fffb02827f107 Mon Sep 17 00:00:00 2001 From: Steve Coffman Date: Fri, 21 Apr 2000 17:37:04 +0000 Subject: [PATCH] huh. Minor change didn't get committed. Fixed the build error by allowing PDFPathPaint to construct with no PDF object number, which in turn lets PDFColor construct so that it doesn't actually output as a distinct PDF Object, but is limited to being part of a stream. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193336 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/pdf/PDFObject.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/org/apache/fop/pdf/PDFObject.java b/src/org/apache/fop/pdf/PDFObject.java index 656377519..88f6bedb1 100644 --- a/src/org/apache/fop/pdf/PDFObject.java +++ b/src/org/apache/fop/pdf/PDFObject.java @@ -77,7 +77,9 @@ public abstract class PDFObject { public PDFObject(int number) { this.number = number; } - + public PDFObject() { + //do nothing + } /** * write the PDF represention of this object * -- 2.39.5