Skip to content

Commit d73f91e

Browse files
snicolljhoeller
authored andcommitted
Polish
Closes gh-1097 (cherry picked from commit 037746d)
1 parent db4882c commit d73f91e

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

spring-aspects/src/main/java/org/springframework/context/annotation/aspectj/SpringConfiguredConfiguration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
* Configurable}.
3030
*
3131
* <p>This configuration class is automatically imported when using the
32-
* @{@link EnableSpringConfigured} annotation. See {@code @EnableSpringConfigured}'s
33-
* javadoc for complete usage details.
32+
* {@link EnableSpringConfigured @EnableSpringConfigured} annotation. See
33+
* {@code @EnableSpringConfigured}'s javadoc for complete usage details.
3434
*
3535
* @author Chris Beams
3636
* @since 3.1

spring-context/src/main/java/org/springframework/context/annotation/Import.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2015 the original author or authors.
2+
* Copyright 2002-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
5454
public @interface Import {
5555

5656
/**
57-
* @{@link Configuration}, {@link ImportSelector}, {@link ImportBeanDefinitionRegistrar}
57+
* {@link Configuration}, {@link ImportSelector}, {@link ImportBeanDefinitionRegistrar}
5858
* or regular component classes to import.
5959
*/
6060
Class<?>[] value();

spring-context/src/main/java/org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
*
6565
* <p>This post-processor is automatically registered by Spring's
6666
* {@code <task:annotation-driven>} XML element, and also by the
67-
* @{@link EnableScheduling} annotation.
67+
* {@link EnableScheduling @EnableScheduling} annotation.
6868
*
6969
* <p>Autodetects any {@link SchedulingConfigurer} instances in the container,
7070
* allowing for customization of the scheduler to be used or for fine-grained

spring-context/src/main/java/org/springframework/scheduling/annotation/SchedulingConfiguration.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2015 the original author or authors.
2+
* Copyright 2002-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,8 +27,8 @@
2727
* bean capable of processing Spring's @{@link Scheduled} annotation.
2828
*
2929
* <p>This configuration class is automatically imported when using the
30-
* @{@link EnableScheduling} annotation. See {@code @EnableScheduling}'s javadoc
31-
* for complete usage details.
30+
* {@link EnableScheduling @EnableScheduling} annotation. See
31+
* {@code @EnableScheduling}'s javadoc for complete usage details.
3232
*
3333
* @author Chris Beams
3434
* @since 3.1

spring-context/src/main/java/org/springframework/scripting/groovy/GroovyScriptFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*
4141
* <p>Typically used in combination with a
4242
* {@link org.springframework.scripting.support.ScriptFactoryPostProcessor};
43-
* see the latter's javadoc} for a configuration example.
43+
* see the latter's javadoc for a configuration example.
4444
*
4545
* <p>Note: Spring 4.0 supports Groovy 1.8 and higher.
4646
*

spring-tx/src/main/java/org/springframework/transaction/annotation/EnableTransactionManagement.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
/**
3030
* Enables Spring's annotation-driven transaction management capability, similar to
3131
* the support found in Spring's {@code <tx:*>} XML namespace. To be used on
32-
* @{@link org.springframework.context.annotation.Configuration Configuration} classes
33-
* as follows:
32+
* {@link org.springframework.context.annotation.Configuration @Configuration}
33+
* classes as follows:
3434
*
3535
* <pre class="code">
3636
* &#064;Configuration

spring-tx/src/main/java/org/springframework/transaction/annotation/TransactionManagementConfigurer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2015 the original author or authors.
2+
* Copyright 2002-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@
3232
* <p>Note that in by-type lookup disambiguation cases, an alternative approach to
3333
* implementing this interface is to simply mark one of the offending
3434
* {@code PlatformTransactionManager} {@code @Bean} methods as
35-
* @{@link org.springframework.context.annotation.Primary Primary}.
35+
* {@link org.springframework.context.annotation.Primary @Primary}.
3636
* This is even generally preferred since it doesn't lead to early initialization
3737
* of the {@code PlatformTransactionManager} bean.
3838
*

spring-web/src/main/java/org/springframework/web/method/annotation/RequestParamMethodArgumentResolver.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
* abstraction, and arguments of type {@code javax.servlet.http.Part} in conjunction
5555
* with Servlet 3.0 multipart requests. This resolver can also be created in default
5656
* resolution mode in which simple types (int, long, etc.) not annotated with
57-
* @{@link RequestParam} are also treated as request parameters with the
58-
* parameter name derived from the argument name.
57+
* {@link RequestParam @RequestParam} are also treated as request parameters with
58+
* the parameter name derived from the argument name.
5959
*
6060
* <p>If the method parameter type is {@link Map}, the name specified in the
6161
* annotation is used to resolve the request parameter String value. The value is

0 commit comments

Comments
 (0)