This commit is contained in:
2008-10-03 11:22:46 +00:00
parent 4ea65e4bf6
commit 3635a5e403
9 changed files with 15 additions and 29 deletions

View File

@@ -107,20 +107,6 @@ namespace DataLoader
byte[] buf = new byte[l];
br.Read(buf, 0, (int)l);
bw.Write(buf, 0, (int)l);
// TODO: Check with KBR to see if she needed read/write this way
// I can't remember.
//byte ac;
//bool done = false;
//while (done == false)
//{
// if (br.PeekChar() > 0)
// {
// ac = br.ReadByte();
// bw.Write(ac);
// }
// else
// done = true;
//}
br.Close();
fs.Close();
bw.Close();