(String attribute, String value)
| 915 | } |
| 916 | |
| 917 | private static String normalizeParameterValue(String attribute, String value) { |
| 918 | return CHARSET_ATTRIBUTE.equals(attribute) ? Ascii.toLowerCase(value) : value; |
| 919 | } |
| 920 | |
| 921 | /** |
| 922 | * Parses a media type from its string representation. |
no test coverage detected