Javadocs author tag doesn't work in methods

This commit is contained in:
Emil Sierżęga
2021-10-13 22:00:42 +02:00
committed by Eleftheria Stein-Kousathana
parent 6b26032ce7
commit a188138715
7 changed files with 6 additions and 19 deletions

View File

@@ -104,7 +104,6 @@ public class HeaderWriterFilter extends OncePerRequestFilter {
* Allow writing headers at the beginning of the request.
* @param shouldWriteHeadersEagerly boolean to allow writing headers at the beginning
* of the request.
* @author Ankur Pathak
* @since 5.2
*/
public void setShouldWriteHeadersEagerly(boolean shouldWriteHeadersEagerly) {

View File

@@ -82,7 +82,6 @@ public final class HstsHeaderWriter implements HeaderWriter {
* @param includeSubDomains maps to {@link #setIncludeSubDomains(boolean)}
* @param preload maps to {@link #setPreload(boolean)}
* @since 5.2.0
* @author Ankur Pathak
*/
public HstsHeaderWriter(RequestMatcher requestMatcher, long maxAgeInSeconds, boolean includeSubDomains,
boolean preload) {
@@ -109,7 +108,6 @@ public final class HstsHeaderWriter implements HeaderWriter {
* @param includeSubDomains maps to {@link #setIncludeSubDomains(boolean)}
* @param preload maps to {@link #setPreload(boolean)}
* @since 5.2.0
* @author Ankur Pathak
*/
public HstsHeaderWriter(long maxAgeInSeconds, boolean includeSubDomains, boolean preload) {
this(new SecureRequestMatcher(), maxAgeInSeconds, includeSubDomains, preload);
@@ -222,7 +220,6 @@ public final class HstsHeaderWriter implements HeaderWriter {
* </p>
* @param preload true to include preload, else false
* @since 5.2.0
* @author Ankur Pathak
*/
public void setPreload(boolean preload) {
this.preload = preload;

View File

@@ -27,6 +27,7 @@ import org.springframework.web.server.ServerWebExchange;
* Writes the Strict-Transport-Security if the request is secure.
*
* @author Rob Winch
* @author Ankur Pathak
* @since 5.0
*/
public final class StrictTransportSecurityServerHttpHeadersWriter implements ServerHttpHeadersWriter {
@@ -73,7 +74,6 @@ public final class StrictTransportSecurityServerHttpHeadersWriter implements Ser
* </p>
* @param preload if preload should be included
* @since 5.2.0
* @author Ankur Pathak
*/
public void setPreload(boolean preload) {
this.preload = preload ? " ; preload" : "";