From 624e2ee285b508b9fa5cba1c69c80362ae873134 Mon Sep 17 00:00:00 2001 From: Jeremias Maerki Date: Thu, 6 Apr 2006 05:47:21 +0000 Subject: [PATCH] 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 --- src/java/org/apache/fop/pdf/PDFOutputIntent.java | 5 +++-- 1 file 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; -- 2.39.5