You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Brad Moody (JIRA)" <ji...@apache.org> on 2008/06/06 11:50:45 UTC

[jira] Closed: (CXF-1635) JaxrsUtils checks the wrong variable for null and size in the method readFromUriParam

     [ https://issues.apache.org/jira/browse/CXF-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brad Moody closed CXF-1635.
---------------------------

    Resolution: Duplicate

Sorry, duplicate of a bug previously submitted by myself......how dumb is that?

Please ignore.

> 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.