From 16df481feac493e5fbc401212f9024b1abf74c9b Mon Sep 17 00:00:00 2001 From: Keiron Liddle Date: Thu, 7 Mar 2002 12:22:11 +0000 Subject: removed excess spaces git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194693 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/pdf/PDFColor.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/org/apache') diff --git a/src/org/apache/fop/pdf/PDFColor.java b/src/org/apache/fop/pdf/PDFColor.java index 443716b3a..379b1e2d8 100644 --- a/src/org/apache/fop/pdf/PDFColor.java +++ b/src/org/apache/fop/pdf/PDFColor.java @@ -175,8 +175,8 @@ public class PDFColor extends PDFPathPaint { } else { p.append(PDFNumber.doubleOut(this.red) + " " + PDFNumber.doubleOut(this.green) + " " - + PDFNumber.doubleOut(this.blue) + " " - + " rg \n"); + + PDFNumber.doubleOut(this.blue) + + " rg\n"); } } else { // stroke/border if (same) { @@ -184,8 +184,8 @@ public class PDFColor extends PDFPathPaint { } else { p.append(PDFNumber.doubleOut(this.red) + " " + PDFNumber.doubleOut(this.green) + " " - + PDFNumber.doubleOut(this.blue) + " " - + " RG \n"); + + PDFNumber.doubleOut(this.blue) + + " RG\n"); } } } // end of output RGB @@ -196,12 +196,12 @@ public class PDFColor extends PDFPathPaint { p.append(PDFNumber.doubleOut(this.cyan) + " " + PDFNumber.doubleOut(this.magenta) + " " + PDFNumber.doubleOut(this.yellow) + " " - + PDFNumber.doubleOut(this.black) + " k \n"); + + PDFNumber.doubleOut(this.black) + " k\n"); } else { // fill p.append(PDFNumber.doubleOut(this.cyan) + " " + PDFNumber.doubleOut(this.magenta) + " " + PDFNumber.doubleOut(this.yellow) + " " - + PDFNumber.doubleOut(this.black) + " K \n"); + + PDFNumber.doubleOut(this.black) + " K\n"); } } // end of if CMYK @@ -209,9 +209,9 @@ public class PDFColor extends PDFPathPaint { // assume we're in DeviceGray, because otherwise we're screwed. if (fillNotStroke) { - p.append(PDFNumber.doubleOut(this.black) + " g \n"); + p.append(PDFNumber.doubleOut(this.black) + " g\n"); } else { - p.append(PDFNumber.doubleOut(this.black) + " G \n"); + p.append(PDFNumber.doubleOut(this.black) + " G\n"); } } -- cgit v1.2.3