[tek-cvs] tek/server/protocol/tputils lib.java,1.4,1.5
Status: Beta
Brought to you by:
billthies
From: Bill T. <bil...@us...> - 2006-07-24 05:49:50
|
Update of /cvsroot/tek/tek/server/protocol/tputils In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv14799/server/protocol/tputils Modified Files: lib.java Log Message: Don't forget to flush. Index: lib.java =================================================================== RCS file: /cvsroot/tek/tek/server/protocol/tputils/lib.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- lib.java 24 Jul 2006 05:18:29 -0000 1.4 +++ lib.java 24 Jul 2006 05:49:48 -0000 1.5 @@ -94,6 +94,7 @@ // refactor to make it explicit that it's shared tek.client.protocol.utils.ClientConstants.CHARSET)); out.write(str, 0, i); // write all characters of str to the outputFile + out.flush(); out.close(); } else @@ -105,6 +106,7 @@ // refactor to make it explicit that it's shared tek.client.protocol.utils.ClientConstants.CHARSET)); out.write(str, 0, i); // write all characters of str to the outputFile + out.flush(); out.close(); } |