From e901abee0667595390234eb099c767763e371fc2 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 8 Dec 2014 23:51:40 +0100 Subject: [PATCH] Fix JavaDoc in TestExecutionListener regarding Ordered --- .../springframework/test/context/TestExecutionListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-test/src/main/java/org/springframework/test/context/TestExecutionListener.java b/spring-test/src/main/java/org/springframework/test/context/TestExecutionListener.java index 8eb58591d5..6274ffd6fc 100644 --- a/spring-test/src/main/java/org/springframework/test/context/TestExecutionListener.java +++ b/spring-test/src/main/java/org/springframework/test/context/TestExecutionListener.java @@ -25,11 +25,11 @@ package org.springframework.test.context; * mechanisms. *

Implementations may optionally declare the position in which they should * be ordered among the chain of default listeners via the - * {@link org.springframework.core.Ordered Order} interface or + * {@link org.springframework.core.Ordered Ordered} interface or * {@link org.springframework.core.annotation.Order @Order} annotation. See * {@link TestContextBootstrapper#getTestExecutionListeners()} for details. *

Spring provides the following out-of-the-box implementations (all of - * which are annotated with {@code @Order}): + * which implement {@code Ordered}): *