diff options
author | Steve Coffman <gears@apache.org> | 2000-04-21 17:37:04 +0000 |
---|---|---|
committer | Steve Coffman <gears@apache.org> | 2000-04-21 17:37:04 +0000 |
commit | 43a550c35509a8618086cf56909fffb02827f107 (patch) | |
tree | cf25807f880d0933b259f088140a1712d601d812 /src/org/apache | |
parent | ce7cd8445a41ce5f81cc11eddf4daa076932642d (diff) | |
download | xmlgraphics-fop-43a550c35509a8618086cf56909fffb02827f107.tar.gz xmlgraphics-fop-43a550c35509a8618086cf56909fffb02827f107.zip |
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
Diffstat (limited to 'src/org/apache')
-rw-r--r-- | src/org/apache/fop/pdf/PDFObject.java | 4 |
1 files changed, 3 insertions, 1 deletions
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 * |