Skip to content

Commit

Permalink
Add Javadoc since for MediaTypeAssert.isNotEqualTo()
Browse files Browse the repository at this point in the history
  • Loading branch information
izeye committed Aug 8, 2024
1 parent e670c6b commit 3ae99eb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public MediaTypeAssert(@Nullable MediaType mediaType) {
* representation.
* @param mediaType the expected media type, as a String to be parsed
* into a MediaType
*/
*/
public MediaTypeAssert isEqualTo(String mediaType) {
return isEqualTo(parseMediaType(mediaType));
}
Expand All @@ -61,6 +61,7 @@ public MediaTypeAssert isEqualTo(String mediaType) {
* representation.
* @param mediaType the given media type, as a String to be parsed
* into a MediaType
* @since 6.2
*/
public MediaTypeAssert isNotEqualTo(String mediaType) {
return isNotEqualTo(parseMediaType(mediaType));
Expand Down

0 comments on commit 3ae99eb

Please sign in to comment.