aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/tools
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2002-01-09 11:35:15 +0000
committerKeiron Liddle <keiron@apache.org>2002-01-09 11:35:15 +0000
commitb611bf585af2523a45efb93301762c32ae95c7b4 (patch)
tree41d25633e979c343fad9aadebb2accd2e24eecb0 /src/org/apache/fop/tools
parent01160b0f81931100ea004b4d83da3119d65b58b3 (diff)
downloadxmlgraphics-fop-b611bf585af2523a45efb93301762c32ae95c7b4.tar.gz
xmlgraphics-fop-b611bf585af2523a45efb93301762c32ae95c7b4.zip
buffered output stream
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194621 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/tools')
-rw-r--r--src/org/apache/fop/tools/anttasks/SerializeHyphPattern.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/apache/fop/tools/anttasks/SerializeHyphPattern.java b/src/org/apache/fop/tools/anttasks/SerializeHyphPattern.java
index db205d9b0..b8f3a8808 100644
--- a/src/org/apache/fop/tools/anttasks/SerializeHyphPattern.java
+++ b/src/org/apache/fop/tools/anttasks/SerializeHyphPattern.java
@@ -111,7 +111,7 @@ public class SerializeHyphPattern extends MatchingTask {
// serialize class
try {
ObjectOutputStream out =
- new ObjectOutputStream(new FileOutputStream(outfile));
+ new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream(outfile)));
out.writeObject(hTree);
out.close();
} catch (IOException ioe) {