From 77b896ca28c8972622d6767806cb4ca0488656ef Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 26 Sep 2019 11:58:45 +0200 Subject: [PATCH] Polishing --- .../src/main/java/org/springframework/core/Ordered.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/Ordered.java b/spring-core/src/main/java/org/springframework/core/Ordered.java index e26c36303c3..05559095a1f 100644 --- a/spring-core/src/main/java/org/springframework/core/Ordered.java +++ b/spring-core/src/main/java/org/springframework/core/Ordered.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2015 the original author or authors. + * Copyright 2002-2019 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. @@ -25,9 +25,9 @@ package org.springframework.core; * priority. * *

Note that there is also a priority marker for this interface: - * {@link PriorityOrdered}. Order values expressed by {@code PriorityOrdered} - * objects always apply before same order values expressed by plain - * {@link Ordered} objects. + * {@link PriorityOrdered}. Consult the Javadoc for {@code PriorityOrdered} for + * details on how {@code PriorityOrdered} objects are ordered relative to + * plain {@link Ordered} objects. * *

Consult the Javadoc for {@link OrderComparator} for details on the * sort semantics for non-ordered objects.