Fix @⁠inheritDoc usage

This commit is contained in:
Sam Brannen 2024-02-23 11:06:17 +01:00
parent 524588ef93
commit 3c00637c88
8 changed files with 14 additions and 14 deletions

View File

@ -207,7 +207,7 @@ public class MethodValidationAdapter implements MethodValidator {
/**
* {@inheritDoc}.
* {@inheritDoc}
* <p>Default are the validation groups as specified in the {@link Validated}
* annotation on the method, or on the containing target class of the method,
* or for an AOP proxy without a target (with all behavior in advisors), also

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -63,7 +63,7 @@ public interface ClientCodecConfigurer extends CodecConfigurer {
ClientDefaultCodecs defaultCodecs();
/**
* {@inheritDoc}.
* {@inheritDoc}
*/
@Override
ClientCodecConfigurer clone();

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -63,7 +63,7 @@ public interface ServerCodecConfigurer extends CodecConfigurer {
ServerDefaultCodecs defaultCodecs();
/**
* {@inheritDoc}.
* {@inheritDoc}
*/
@Override
ServerCodecConfigurer clone();

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -65,7 +65,7 @@ public class MappingJackson2CborHttpMessageConverter extends AbstractJackson2Htt
/**
* {@inheritDoc}
* The {@code ObjectMapper} must be configured with a {@code CBORFactory} instance.
* <p>The {@code ObjectMapper} must be configured with a {@code CBORFactory} instance.
*/
@Override
public void setObjectMapper(ObjectMapper objectMapper) {

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -62,7 +62,7 @@ public class MappingJackson2SmileHttpMessageConverter extends AbstractJackson2Ht
/**
* {@inheritDoc}
* The {@code ObjectMapper} must be configured with a {@code SmileFactory} instance.
* <p>The {@code ObjectMapper} must be configured with a {@code SmileFactory} instance.
*/
@Override
public void setObjectMapper(ObjectMapper objectMapper) {

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2023 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -72,7 +72,7 @@ public class MappingJackson2XmlHttpMessageConverter extends AbstractJackson2Http
/**
* {@inheritDoc}
* The {@code ObjectMapper} parameter must be a {@link XmlMapper} instance.
* <p>The {@code ObjectMapper} parameter must be an {@link XmlMapper} instance.
*/
@Override
public void setObjectMapper(ObjectMapper objectMapper) {

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2023 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -75,7 +75,7 @@ public class DefaultDataBinderFactory implements WebDataBinderFactory {
}
/**
* {@inheritDoc}.
* {@inheritDoc}
* <p>By default, if the parameter has {@code @Valid}, Bean Validation is
* excluded, deferring to method validation.
*/

View File

@ -143,7 +143,7 @@ public class RequestMappingHandlerMapping extends RequestMappingInfoHandlerMappi
/**
* {@inheritDoc}
* Expects a handler to have a type-level @{@link Controller} annotation.
* <p>Expects a handler to have a type-level @{@link Controller} annotation.
*/
@Override
protected boolean isHandler(Class<?> beanType) {