Skip to content

Commit

Permalink
[HTTPCLIENT-1717] Make fluent API .Content.Content(byte[], ContentTyp…
Browse files Browse the repository at this point in the history
…e) public.

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1728788 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
garydgregory committed Feb 6, 2016
1 parent cd4fc8f commit 8e8cfc4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8e8cfc4

Please sign in to comment.