Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -423,10 +423,8 @@ public static ContentType parse(final CharSequence s) throws UnsupportedCharsetE
*
* @param s text
* @return content type {@code Content-Type} value or null.
* @throws UnsupportedCharsetException Thrown when the named charset is not available in
* this instance of the Java virtual machine
*/
public static ContentType parseLenient(final CharSequence s) throws UnsupportedCharsetException {
public static ContentType parseLenient(final CharSequence s) {
return parse(s, false);
}

Expand Down
Loading