From: Steve Coffman Date: Fri, 21 Apr 2000 17:37:04 +0000 (+0000) Subject: huh. Minor change didn't get committed. Fixed the build error by allowing X-Git-Tag: pre-columns~528 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=43a550c35509a8618086cf56909fffb02827f107;p=xmlgraphics-fop.git 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 --- 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 *