[HTTPCLIENT-1717] Make fluent API .Content.Content(byte[], ContentType) public.

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1728788 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2016-02-06 03:10:00 +00:00
parent cd4fc8f885
commit 8e8cfc41ad
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,8 @@ Changelog:
* [HTTPCLIENT-1715] NTLMEngineImpl.Type1Message not thread safe but declared as a constant.
Contributed by Olivier Lafontaine <olafontaine at gmail.com>, Gary Gregory <ggregory at apache.org>
* [HTTPCLIENT-1717] Make fluent API .Content.Content(byte[], ContentType) public.
Contributed by Cash Costello <cash.costello at gmail.com>
Release 5.0-ALPHA1

View File

@ -44,7 +44,7 @@ public class Content {
private final byte[] raw;
private final ContentType type;
Content(final byte[] raw, final ContentType type) {
public Content(final byte[] raw, final ContentType type) {
super();
this.raw = raw;
this.type = type;