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:
Simone Bordet 2023-06-11 19:12:59 +02:00
commit 601bd687aa
No known key found for this signature in database
GPG Key ID: 1677D141BCF3584D
1 changed files with 5 additions and 2 deletions

View File

@ -192,7 +192,10 @@ public class JettyHttpExchangeDelegate extends HttpExchange
@Override
public void setStreams(InputStream i, OutputStream o)
{
assert _inputStream != null;
if (i != null)
_inputStream = i;
if (o != null)
_outputStream = o;
}