You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mime4j-dev@james.apache.org by "Dmitry Katsubo (JIRA)" <mi...@james.apache.org> on 2018/05/17 09:18:00 UTC

[jira] [Resolved] (MIME4J-276) Potential NPE in Fields.contentType(String mimeType, NameValuePair... parameters)

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

Dmitry Katsubo resolved MIME4J-276.
-----------------------------------
    Resolution: Duplicate

> Potential NPE in Fields.contentType(String mimeType, NameValuePair... parameters)
> ---------------------------------------------------------------------------------
>
>                 Key: MIME4J-276
>                 URL: https://issues.apache.org/jira/browse/MIME4J-276
>             Project: James Mime4j
>          Issue Type: Bug
>          Components: dom
>    Affects Versions: 0.8.2
>            Reporter: Dmitry Katsubo
>            Priority: Minor
>
> The code of this method reads:
> {code}
> public static ContentTypeField contentType(String mimeType, NameValuePair... parameters) {
>     return contentType(mimeType, parameters != null || parameters.length == 0 ? Arrays.asList(parameters) : null);
> }
> {code}
> Eclipse shows an error at location {{parameters.length == 0}} because at this place {{parameters}} can only be NULL. Perhaps the author ([~olegk]) meant this:
> {code}
> parameters == null || parameters.length == 0 ? null : Arrays.asList(parameters)
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)