Skip to content

Commit

Permalink
Add missing WILDCAR
Browse files Browse the repository at this point in the history
  • Loading branch information
arturobernalg committed Sep 23, 2024
1 parent 9617828 commit 8d2d6ff
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,10 @@ public final class ContentType implements Serializable {
* @since 5.1
*/
public static final ContentType TEXT_EVENT_STREAM = create(
"text/event-stream", StandardCharsets.UTF_8, true);
"text/event-stream", StandardCharsets.UTF_8);

public static final ContentType WILDCARD = create(
"*/*", (Charset) null, true);

/**
* An empty immutable {@code NameValuePair} array.
Expand Down

0 comments on commit 8d2d6ff

Please sign in to comment.