Skip to content

Commit 1e74820

Browse files
committed
Consistent since tag format
1 parent 882ad0e commit 1e74820

36 files changed

+52
-52
lines changed

spring-graphql/src/main/java/org/springframework/graphql/data/ArgumentValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*
4242
* @author Rossen Stoyanchev
4343
* @param <T> the type of value contained
44-
* @since 1.1
44+
* @since 1.1.0
4545
* @see <a href="http://spec.graphql.org/October2021/#sec-Non-Null.Nullable-vs-Optional">Nullable vs Optional</a>
4646
*/
4747
public final class ArgumentValue<T> {

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/BatchMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
* Set the maximum number of keys to include a single batch, before
100100
* splitting into multiple batches of keys to load.
101101
* <p>By default this is -1 in which case there is no limit.
102-
* @since 1.1
102+
* @since 1.1.0
103103
*/
104104
int maxBatchSize() default -1;
105105

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/GraphQlExceptionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* in the section {@literal "Annotated Controllers"}.
4343
*
4444
* @author Rossen Stoyanchev
45-
* @since 1.2
45+
* @since 1.2.0
4646
*/
4747
@Target(ElementType.METHOD)
4848
@Retention(RetentionPolicy.RUNTIME)

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/AnnotatedControllerConfigurer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void addFormatterRegistrar(FormatterRegistrar registrar) {
174174
* {@link org.springframework.graphql.data.method.annotation.Argument @Argument}
175175
* should falls back to direct field access in case the target object does
176176
* not use accessor methods.
177-
* @since 1.2
177+
* @since 1.2.0
178178
*/
179179
public void setFallBackOnDirectFieldAccess(boolean fallBackOnDirectFieldAccess) {
180180
this.fallBackOnDirectFieldAccess = fallBackOnDirectFieldAccess;
@@ -186,7 +186,7 @@ public void setFallBackOnDirectFieldAccess(boolean fallBackOnDirectFieldAccess)
186186
* except for {@link SourceMethodArgumentResolver}, which is always last.
187187
*
188188
* @param resolver the resolver to add.
189-
* @since 1.2
189+
* @since 1.2.0
190190
*/
191191
public void addCustomArgumentResolver(HandlerMethodArgumentResolver resolver) {
192192
this.customArgumentResolvers.add(resolver);
@@ -210,7 +210,7 @@ HandlerMethodArgumentResolverComposite getArgumentResolvers() {
210210
* {@link org.springframework.graphql.execution.GraphQlSource.Builder#exceptionResolvers(List)
211211
* GraphQlSource.Builder}
212212
*
213-
* @since 1.2
213+
* @since 1.2.0
214214
*/
215215
public DataFetcherExceptionResolver getExceptionResolver() {
216216
Assert.notNull(this.exceptionResolver,

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/AnnotatedControllerExceptionResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
* non-controller {@link graphql.schema.DataFetcher}s.
6868
*
6969
* @author Rossen Stoyanchev
70-
* @since 1.2
70+
* @since 1.2.0
7171
*/
7272
final class AnnotatedControllerExceptionResolver {
7373

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/DataFetcherHandlerMethod.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public HandlerMethodArgumentResolverComposite getResolvers() {
100100
*
101101
* @return the raw value returned by the invoked method, possibly a
102102
* {@code Mono} in case a method argument requires asynchronous resolution;
103-
* {@code Mono<Throwable} is returned if invocation fails.
103+
* {@code Mono<Throwable>} is returned if invocation fails.
104104
*/
105105
@Nullable
106106
public Object invoke(DataFetchingEnvironment environment) {
@@ -110,7 +110,7 @@ public Object invoke(DataFetchingEnvironment environment) {
110110
/**
111111
* Variant of {@link #invoke(DataFetchingEnvironment)} that also accepts
112112
* "given" arguments, which are matched by type.
113-
* @since 1.2
113+
* @since 1.2.0
114114
*/
115115
@Nullable
116116
public Object invoke(DataFetchingEnvironment environment, Object... providedArgs) {

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/ScrollSubrangeMethodArgumentResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* and {@link ScrollPosition} as cursor.
3030
*
3131
* @author Rossen Stoyanchev
32-
* @since 1.2
32+
* @since 1.2.0
3333
*/
3434
public class ScrollSubrangeMethodArgumentResolver extends SubrangeMethodArgumentResolver<ScrollPosition> {
3535

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/SortMethodArgumentResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* Resolver for method arguments of type {@link Sort}.
3333
*
3434
* @author Rossen Stoyanchev
35-
* @since 1.2
35+
* @since 1.2.0
3636
*/
3737
public class SortMethodArgumentResolver implements HandlerMethodArgumentResolver {
3838

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/SubrangeMethodArgumentResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* from "first", "last", "before", and "after" GraphQL arguments.
3232
*
3333
* @author Rossen Stoyanchev
34-
* @since 1.2
34+
* @since 1.2.0
3535
*/
3636
public class SubrangeMethodArgumentResolver<P> implements HandlerMethodArgumentResolver {
3737

spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/ValidationHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* requires bean validation.
4444
*
4545
* @author Rossen Stoyanchev
46-
* @since 1.2
46+
* @since 1.2.0
4747
*/
4848
class ValidationHelper {
4949

0 commit comments

Comments
 (0)