diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-04-06 05:47:21 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-04-06 05:47:21 +0000 |
commit | 624e2ee285b508b9fa5cba1c69c80362ae873134 (patch) | |
tree | 37ba558eecd6a3aaa007b625b7d12c65dc3667c2 /src/java/org/apache | |
parent | 6b478bbe0399b7534107f4a48c7dcef28362cb73 (diff) | |
download | xmlgraphics-fop-624e2ee285b508b9fa5cba1c69c80362ae873134.tar.gz xmlgraphics-fop-624e2ee285b508b9fa5cba1c69c80362ae873134.zip |
Fixed encoding issue.
Using Commons IO ByteArrayOutputStream.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@391907 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache')
-rw-r--r-- | src/java/org/apache/fop/pdf/PDFOutputIntent.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/pdf/PDFOutputIntent.java b/src/java/org/apache/fop/pdf/PDFOutputIntent.java index a18f0e351..4d509e24a 100644 --- a/src/java/org/apache/fop/pdf/PDFOutputIntent.java +++ b/src/java/org/apache/fop/pdf/PDFOutputIntent.java @@ -18,9 +18,10 @@ package org.apache.fop.pdf; -import java.io.ByteArrayOutputStream; import java.io.IOException; +import org.apache.commons.io.output.ByteArrayOutputStream; + /** * Represents the OutputIntent dictionary. * @since PDF 1.4 @@ -118,7 +119,7 @@ public class PDFOutputIntent extends PDFObject { /** * Sets the destination ICC profile. * @param destOutputProfile An ICC profile stream defining the transformation from the PDF - * document’s source colors to output device colorants. + * document's source colors to output device colorants. */ public void setDestOutputProfile(PDFICCStream destOutputProfile) { this.destOutputProfile = destOutputProfile; |