You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2018/03/31 23:00:55 UTC

groovy git commit: remove javadoc warnings

Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_5_X 24f8086a8 -> 5db4b4970


remove javadoc warnings


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/5db4b497
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/5db4b497
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/5db4b497

Branch: refs/heads/GROOVY_2_5_X
Commit: 5db4b497006c8e86a4a233cae340dee2e38982c2
Parents: 24f8086
Author: Paul King <pa...@asert.com.au>
Authored: Sun Apr 1 09:00:46 2018 +1000
Committer: Paul King <pa...@asert.com.au>
Committed: Sun Apr 1 09:00:46 2018 +1000

----------------------------------------------------------------------
 .../apache/groovy/datetime/extensions/DateTimeExtensions.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/5db4b497/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java
----------------------------------------------------------------------
diff --git a/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java b/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java
index 28ec8e1..0ec66f3 100644
--- a/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java
+++ b/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java
@@ -140,7 +140,7 @@ public class DateTimeExtensions {
      * {@link java.time.temporal.Temporal} argument.
      * <p>
      * If the unit is too large to iterate to the second Temporal exactly, such as iterating from two LocalDateTimes
-     * that are seconds apart using {@java.time.temporal.ChronoUnit#DAYS} as the unit, the iteration will cease
+     * that are seconds apart using {@link java.time.temporal.ChronoUnit#DAYS} as the unit, the iteration will cease
      * as soon as the current value of the iteration is later than the second Temporal argument. The closure will
      * not be called with any value later than the {@code to} value.
      *
@@ -208,7 +208,7 @@ public class DateTimeExtensions {
      * {@link java.time.temporal.Temporal} argument.
      * <p>
      * If the unit is too large to iterate to the second Temporal exactly, such as iterating from two LocalDateTimes
-     * that are seconds apart using {@java.time.temporal.ChronoUnit#DAYS} as the unit, the iteration will cease
+     * that are seconds apart using {@link java.time.temporal.ChronoUnit#DAYS} as the unit, the iteration will cease
      * as soon as the current value of the iteration is earlier than the second Temporal argument. The closure will
      * not be called with any value earlier than the {@code to} value.
      *