improved efficiency
This commit is contained in:
parent
b710701d13
commit
da82238d6b
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue