Fix broken Javadoc tags
Closes gh-26967
This commit is contained in:
@@ -1322,7 +1322,7 @@ public abstract class ClassUtils {
|
||||
* Note that, despite being synthetic, bridge methods ({@link Method#isBridge()}) are considered
|
||||
* as user-level methods since they are eventually pointing to a user-declared generic method.
|
||||
* @param method the method to check
|
||||
* @return {@code true} if the method can be considered as user-declared; [@code false} otherwise
|
||||
* @return {@code true} if the method can be considered as user-declared; {@code false} otherwise
|
||||
*/
|
||||
public static boolean isUserLevelMethod(Method method) {
|
||||
Assert.notNull(method, "Method must not be null");
|
||||
|
||||
@@ -29,7 +29,7 @@ import org.springframework.util.Assert;
|
||||
* Base class for STOMP client implementations.
|
||||
*
|
||||
* <p>Subclasses can connect over WebSocket or TCP using any library. When creating
|
||||
* a new connection, a subclass can create an instance of @link DefaultStompSession}
|
||||
* a new connection, a subclass can create an instance of {@link DefaultStompSession}
|
||||
* which extends {@link org.springframework.messaging.tcp.TcpConnectionHandler}
|
||||
* whose lifecycle methods the subclass must then invoke.
|
||||
*
|
||||
|
||||
@@ -88,7 +88,7 @@ public class R2dbcTransactionManager extends AbstractReactiveTransactionManager
|
||||
|
||||
|
||||
/**
|
||||
* Create a new @link ConnectionFactoryTransactionManager} instance.
|
||||
* Create a new {@link R2dbcTransactionManager} instance.
|
||||
* A ConnectionFactory has to be set to be able to use it.
|
||||
* @see #setConnectionFactory
|
||||
*/
|
||||
|
||||
@@ -108,8 +108,8 @@ public class SingleConnectionFactory extends DelegatingConnectionFactory
|
||||
* @param target underlying target {@link Connection}.
|
||||
* @param metadata {@link ConnectionFactory} metadata to be associated with this {@link ConnectionFactory}.
|
||||
* @param suppressClose if the {@link Connection} should be wrapped with a {@link Connection} that suppresses
|
||||
* @code close()} calls (to allow for normal {@code close()} usage in applications that expect a pooled
|
||||
* @link Connection}).
|
||||
* {@code close()} calls (to allow for normal {@code close()} usage in applications that expect a pooled
|
||||
* {@link Connection}).
|
||||
*/
|
||||
public SingleConnectionFactory(Connection target, ConnectionFactoryMetadata metadata, boolean suppressClose) {
|
||||
super(new ConnectionFactory() {
|
||||
|
||||
@@ -88,7 +88,7 @@ public @interface CrossOrigin {
|
||||
|
||||
/**
|
||||
* Alternative to {@link #origins()} that supports more flexible origins
|
||||
* patterns. Please, see @link CorsConfiguration#setAllowedOriginPatterns(List)}
|
||||
* patterns. Please, see {@link CorsConfiguration#setAllowedOriginPatterns(List)}
|
||||
* for details.
|
||||
* <p>By default this is not set.
|
||||
* @since 5.3
|
||||
|
||||
@@ -22,7 +22,7 @@ import org.springframework.web.servlet.view.AbstractTemplateViewResolver;
|
||||
import org.springframework.web.servlet.view.AbstractUrlBasedView;
|
||||
|
||||
/**
|
||||
* Convenience subclass of @link AbstractTemplateViewResolver} that supports
|
||||
* Convenience subclass of {@link AbstractTemplateViewResolver} that supports
|
||||
* {@link GroovyMarkupView} (i.e. Groovy XML/XHTML markup templates) and
|
||||
* custom subclasses of it.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user