Polish "Fix duplicate "the" in Javadoc and XSD"

See gh-27291
This commit is contained in:
Stephane Nicoll 2021-08-19 08:54:15 +02:00
parent ac72277258
commit af6fd6c303
7 changed files with 10 additions and 10 deletions

View File

@ -37,7 +37,7 @@ final class RecordComponentWriter extends RecordComponentVisitor {
/** The name_index field of the Record attribute. */ /** The name_index field of the Record attribute. */
private final int nameIndex; private final int nameIndex;
/** The descriptor_index field of the Record attribute. */ /** The descriptor_index field of the the Record attribute. */
private final int descriptorIndex; private final int descriptorIndex;
/** /**

View File

@ -28,7 +28,7 @@ import org.springframework.cglib.core.internal.CustomizerRegistry;
/** /**
* Generates classes to handle multi-valued keys, for use in things such as Maps and Sets. * Generates classes to handle multi-valued keys, for use in things such as Maps and Sets.
* Code for <code>equals</code> and <code>hashCode</code> methods follow * Code for <code>equals</code> and <code>hashCode</code> methods follow the
* the rules laid out in <i>Effective Java</i> by Joshua Bloch. * the rules laid out in <i>Effective Java</i> by Joshua Bloch.
* <p> * <p>
* To generate a <code>KeyFactory</code>, you need to supply an interface which * To generate a <code>KeyFactory</code>, you need to supply an interface which

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -82,8 +82,8 @@ import org.springframework.validation.Validator;
* <li>{@link #userDestinationMessageHandler}</li> * <li>{@link #userDestinationMessageHandler}</li>
* </ul> * </ul>
* *
* <p>{@link #brokerChannel} delivers messages from within the application to * <p>{@link #brokerChannel} delivers messages from within the application to the
* the respective message handlers. {@link #brokerMessagingTemplate} can be injected * respective message handlers. {@link #brokerMessagingTemplate} can be injected
* into any application component to send messages. * into any application component to send messages.
* *
* <p>Subclasses are responsible for the parts of the configuration that feed messages * <p>Subclasses are responsible for the parts of the configuration that feed messages

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -194,8 +194,8 @@ public class ServletInvocableHandlerMethod extends InvocableHandlerMethod {
} }
/** /**
* Create a nested ServletInvocableHandlerMethod subclass that returns * Create a nested ServletInvocableHandlerMethod subclass that returns the
* the given value (or raises an Exception if the value is one) rather than * given value (or raises an Exception if the value is one) rather than
* actually invoking the controller method. This is useful when processing * actually invoking the controller method. This is useful when processing
* async return values (e.g. Callable, DeferredResult, ListenableFuture). * async return values (e.g. Callable, DeferredResult, ListenableFuture).
*/ */

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -106,7 +106,7 @@ public class SockJsServiceRegistration {
* also be set to point to a URL served by the application. * also be set to point to a URL served by the application.
* <p>Note that it's possible to specify a relative URL in which case the URL * <p>Note that it's possible to specify a relative URL in which case the URL
* must be relative to the iframe URL. For example assuming a SockJS endpoint * must be relative to the iframe URL. For example assuming a SockJS endpoint
* mapped to "/sockjs", and resulting iframe URL "/sockjs/iframe.html", * mapped to "/sockjs", and resulting iframe URL "/sockjs/iframe.html", then
* the relative URL must start with "../../" to traverse up to the location * the relative URL must start with "../../" to traverse up to the location
* above the SockJS mapping. In case of a prefix-based Servlet mapping one more * above the SockJS mapping. In case of a prefix-based Servlet mapping one more
* traversal may be needed. * traversal may be needed.