[
https://issues.apache.org/jira/browse/CXF-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12602973#action_12602973
]
Sergey Beryozkin commented on CXF-1635:
---------------------------------------
No problems :-). I'm sorry for not applying the other patch yet, but I'm
planning to commit the accumulative patch at the 21/22 June weekends. Can you
wait until then ? I'm really trying to focus on the 'big' patch and given that
I have at the moment a very limited amount of time to spend I'd rather do a one
big commit.
If it's urgent for you then may be someone else can apply it.
> 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.