Removed break statement wrongly introduced by #10326.
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
parent
e91a68923a
commit
36faf1d369
|
@ -68,7 +68,6 @@ public class GZIPContentDecoder extends org.eclipse.jetty.http.GZIPContentDecode
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
else
|
else
|
||||||
iterator.set(new HttpField(HttpHeader.CONTENT_ENCODING, value.substring(0, comma)));
|
iterator.set(new HttpField(HttpHeader.CONTENT_ENCODING, value.substring(0, comma)));
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue