Fixes #3969 - Changing TYPE to class from PR review

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2019-08-13 16:00:18 -05:00
parent 3940baea9c
commit fec01a4628
1 changed files with 1 additions and 1 deletions

View File

@ -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;