keiron 02/01/09 03:35:15 Modified: src/org/apache/fop/tools/anttasks SerializeHyphPattern.java Log: buffered output stream Revision Changes Path 1.3 +2 -2 xml-fop/src/org/apache/fop/tools/anttasks/SerializeHyphPattern.java Index: SerializeHyphPattern.java =================================================================== RCS file: /home/cvs/xml-fop/src/org/apache/fop/tools/anttasks/SerializeHyphPattern.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SerializeHyphPattern.java 30 Jul 2001 20:29:35 -0000 1.2 +++ SerializeHyphPattern.java 9 Jan 2002 11:35:15 -0000 1.3 @@ -1,5 +1,5 @@ /* - * $Id: SerializeHyphPattern.java,v 1.2 2001/07/30 20:29:35 tore Exp $ + * $Id: SerializeHyphPattern.java,v 1.3 2002/01/09 11:35:15 keiron Exp $ * Copyright (C) 2001 The Apache Software Foundation. All rights reserved. * For details on use and redistribution please refer to the * LICENSE file included with these sources. @@ -111,7 +111,7 @@ // 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) {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]