Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.2 Final
-
None
Description
The two constructors of UrlEncodedFormEntity without charset parameters throw a NPE.
This is a regression from 4.1.x.
Here is a test simple case :
List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>(); params.add(new BasicNameValuePair("test", "test")); new UrlEncodedFormEntity(params);