From b6dddcced83249e9a4b3f16389c197e152ad8aba Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 3 Aug 2018 09:35:30 +0200 Subject: [PATCH] Include @ in javadoc links for annotations See gh-13988 --- .../springframework/boot/env/EnvironmentPostProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/env/EnvironmentPostProcessor.java b/spring-boot/src/main/java/org/springframework/boot/env/EnvironmentPostProcessor.java index 3c29532da7a..63497a5aebb 100644 --- a/spring-boot/src/main/java/org/springframework/boot/env/EnvironmentPostProcessor.java +++ b/spring-boot/src/main/java/org/springframework/boot/env/EnvironmentPostProcessor.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2016 the original author or authors. + * Copyright 2012-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,7 +30,7 @@ import org.springframework.core.env.Environment; *

* {@code EnvironmentPostProcessor} processors are encouraged to detect whether Spring's * {@link org.springframework.core.Ordered Ordered} interface has been implemented or if - * the @{@link org.springframework.core.annotation.Order Order} annotation is present and + * the {@link org.springframework.core.annotation.Order @Order} annotation is present and * to sort instances accordingly if so prior to invocation. * * @author Andy Wilkinson