diff options
-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; |