Enforce order of Javadoc tags for records

Closes gh-33403
This commit is contained in:
Sam Brannen
2024-08-18 13:01:43 +02:00
parent e0cb7aa0a0
commit 143736e59b
5 changed files with 9 additions and 9 deletions

View File

@@ -27,10 +27,10 @@ import org.springframework.util.StringUtils;
/**
* Represents an ETag for HTTP conditional requests.
*
* @param tag the unquoted tag value
* @param weak whether the entity tag is for weak or strong validation
* @author Rossen Stoyanchev
* @since 5.3.38
* @param tag the unquoted tag value
* @param weak whether the entity tag is for weak or strong validation
* @see <a href="https://datatracker.ietf.org/doc/html/rfc7232">RFC 7232</a>
*/
public record ETag(String tag, boolean weak) {