This code:
HttpClient.newBuilder()
.version(Version.HTTP_2)
.build();
is shown like this when the standard JDT code mining for parameter names is enabled:

No parameter names.
However, this plugin does this:

The difference, I think, is that the parameter name is contained in the method name as is therefore most likely redundant. This often happens in long builders. Would you consider adding this as one more configuration option, please?
This code:
is shown like this when the standard JDT code mining for parameter names is enabled:

No parameter names.
However, this plugin does this:

The difference, I think, is that the parameter name is contained in the method name as is therefore most likely redundant. This often happens in long builders. Would you consider adding this as one more configuration option, please?