Fixes #3969 - Changing TYPE to class from PR review
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
parent
3940baea9c
commit
fec01a4628
|
@ -492,7 +492,7 @@ public class ForwardedRequestCustomizer implements Customizer
|
|||
|
||||
private boolean updateForwardedHandle(MethodHandles.Lookup lookup, String headerName, String forwardedMethodName) throws NoSuchMethodException, IllegalAccessException
|
||||
{
|
||||
final MethodType type = methodType(Void.TYPE, HttpField.class);
|
||||
final MethodType type = methodType(void.class, HttpField.class);
|
||||
|
||||
if (StringUtil.isBlank(headerName))
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue