Merged branch 'jetty-11.0.x' into 'jetty-12.0.x'.
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
commit
601bd687aa
|
@ -192,8 +192,11 @@ public class JettyHttpExchangeDelegate extends HttpExchange
|
|||
@Override
|
||||
public void setStreams(InputStream i, OutputStream o)
|
||||
{
|
||||
_inputStream = i;
|
||||
_outputStream = o;
|
||||
assert _inputStream != null;
|
||||
if (i != null)
|
||||
_inputStream = i;
|
||||
if (o != null)
|
||||
_outputStream = o;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue