[ 
https://issues.apache.org/jira/browse/CXF-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12602982#action_12602982
 ] 

Brad Moody commented on CXF-1635:
---------------------------------

Sergey,

no problem with waiting until then. I've got a CXF build with the fix I need 
which I can us in the meantime.

Thanks,
Brad.

> JaxrsUtils checks the wrong variable for null and size in the method 
> readFromUriParam
> -------------------------------------------------------------------------------------
>
>                 Key: CXF-1635
>                 URL: https://issues.apache.org/jira/browse/CXF-1635
>             Project: CXF
>          Issue Type: Bug
>          Components: REST
>    Affects Versions: 2.1
>            Reporter: Brad Moody
>            Priority: Minor
>         Attachments: JaxrsUtils.patch
>
>
> At line 511 in JaxrsUtils :
>         List<String> results = values.get(parameterName);
>         if (values != null && values.size() > 0) {
>             result = results.get(results.size() - 1);
>         }
> Looks to me like it should be :
>         List<String> results = values.get(parameterName);
>         if (results != null && results.size() > 0) {
>             result = results.get(results.size() - 1);
>         }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to