From c95af17eae4cf6312872e7efd1446e020d5dc9c5 Mon Sep 17 00:00:00 2001 From: Alexey Andreev Date: Mon, 19 Feb 2024 20:18:03 +0100 Subject: [PATCH] classlib: fix javadoc warning --- .../main/java/org/threeten/bp/format/DateTimeParseContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classlib/src/main/java/org/threeten/bp/format/DateTimeParseContext.java b/classlib/src/main/java/org/threeten/bp/format/DateTimeParseContext.java index 396f71e6a..31a946b3d 100644 --- a/classlib/src/main/java/org/threeten/bp/format/DateTimeParseContext.java +++ b/classlib/src/main/java/org/threeten/bp/format/DateTimeParseContext.java @@ -70,7 +70,7 @@ import org.threeten.bp.temporal.UnsupportedTemporalTypeException; * It has the ability to store and retrieve the parsed values and manage optional segments. * It also provides key information to the parsing methods. *

- * Once parsing is complete, the {@link #toBuilder()} is typically used + * Once parsing is complete, the toBuilder() is typically used * to obtain a builder that can combine the separate parsed fields into meaningful values. * *

Specification for implementors