[
https://issues.apache.org/jira/browse/CXF-5517?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13887826#comment-13887826
]
Aki Yoshida commented on CXF-5517:
----------------------------------
Maybe we need to fix this.
but Void.TYPE is the same thing as void.class, no?
I just don't know when to use Void.class in comparison.
> Incorrect check for VOID type
> -----------------------------
>
> Key: CXF-5517
> URL: https://issues.apache.org/jira/browse/CXF-5517
> Project: CXF
> Issue Type: Bug
> Reporter: Valentin Mayamsin
> Labels: void
>
> There are multiple occurrences in CXF code base for both server and client
> side which incorrectly deals with VOID return type. For example:
> method.getReturnType() == Void.class
> This fails in case of primitive VOID:
> method.getReturnType() => void.class
> The correct way of checking for VOID is:
> method.getReturnType().equals(Void.TYPE)
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)