You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "wangzhenghang (JIRA)" <ji...@apache.org> on 2013/09/16 16:22:56 UTC

[jira] [Commented] (HTTPCLIENT-1399) NPE in org.apache.http.client.methods.RequestBuilder line 237

    [ https://issues.apache.org/jira/browse/HTTPCLIENT-1399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13768345#comment-13768345 ] 

wangzhenghang commented on HTTPCLIENT-1399:
-------------------------------------------

Lin 229 also throw NPE, I forget to say.
                
> NPE in org.apache.http.client.methods.RequestBuilder line 237
> -------------------------------------------------------------
>
>                 Key: HTTPCLIENT-1399
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1399
>             Project: HttpComponents HttpClient
>          Issue Type: Bug
>          Components: HttpClient
>    Affects Versions: 4.3 Final
>            Reporter: wangzhenghang
>             Fix For: 4.3.1
>
>
>     public RequestBuilder setHeader(final String name, final String value) {
>         if (headergroup != null) {
>             headergroup = new HeaderGroup();
>         }
>         this.headergroup.updateHeader(new BasicHeader(name, value));
>         return this;
>     }
> Obviously it was a copy-paste error. "headergroup != null" should be "headergroup == null"

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org