aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2002-03-07 12:22:11 +0000
committerKeiron Liddle <keiron@apache.org>2002-03-07 12:22:11 +0000
commit16df481feac493e5fbc401212f9024b1abf74c9b (patch)
treed42796822bde9913674eb5f7e2244bb89d2320f7 /src/org/apache
parent8d32aba5aace034438b96bc6f97153e7c4e2afc5 (diff)
downloadxmlgraphics-fop-16df481feac493e5fbc401212f9024b1abf74c9b.tar.gz
xmlgraphics-fop-16df481feac493e5fbc401212f9024b1abf74c9b.zip
removed excess spaces
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194693 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache')
-rw-r--r--src/org/apache/fop/pdf/PDFColor.java16
1 files changed, 8 insertions, 8 deletions
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");
}
}