improved efficiency

This commit is contained in:
Greg Wilkins 2012-08-31 17:19:47 +10:00
parent b710701d13
commit da82238d6b
1 changed files with 6 additions and 0 deletions

View File

@ -125,6 +125,12 @@ public class MultiPartOutputStream extends FilterOutputStream
out.write(__CRLF);
}
/* ------------------------------------------------------------ */
@Override
public void write(byte[] b, int off, int len) throws IOException
{
out.write(b,off,len);
}
}