Skip to content

Commit 037746d

Browse files
committed
Polish
Closes gh-1097
1 parent d7184d1 commit 037746d

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

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

Lines changed: 2 additions & 2 deletions
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

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

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

Lines changed: 3 additions & 3 deletions
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-tx/src/main/java/org/springframework/transaction/annotation/EnableTransactionManagement.java

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

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

0 commit comments

Comments
 (0)