From 69520d7426371d53d3e39e474c95c99706fba862 Mon Sep 17 00:00:00 2001 From: David Chan Date: Thu, 14 Mar 2024 14:14:50 -0400 Subject: [PATCH] Fix doclint errors --- .../java/org/eclipse/microprofile/metrics/Snapshot.java | 4 ++-- .../org/eclipse/microprofile/metrics/test/MpMetricTest.java | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/src/main/java/org/eclipse/microprofile/metrics/Snapshot.java b/api/src/main/java/org/eclipse/microprofile/metrics/Snapshot.java index 52a13d2c..6f631e08 100644 --- a/api/src/main/java/org/eclipse/microprofile/metrics/Snapshot.java +++ b/api/src/main/java/org/eclipse/microprofile/metrics/Snapshot.java @@ -1,6 +1,6 @@ /* ********************************************************************** - * Copyright (c) 2017, 2023 Contributors to the Eclipse Foundation + * Copyright (c) 2017, 2024 Contributors to the Eclipse Foundation * 2010-2013 Coda Hale, Yammer.com * * See the NOTICES file(s) distributed with this work for additional @@ -78,7 +78,7 @@ public abstract class Snapshot { * Represents a percentile and its value at the moment it was sampled from the Snapshot. Percentile values of a * {@link Timer} are represented in units of nanoseconds. * - * See {@link #percentileValue()} + * See {@link Snapshot#percentileValues()} */ public static class PercentileValue { private final double percentile; diff --git a/tck/rest/src/main/java/org/eclipse/microprofile/metrics/test/MpMetricTest.java b/tck/rest/src/main/java/org/eclipse/microprofile/metrics/test/MpMetricTest.java index 22b36451..aebac34a 100644 --- a/tck/rest/src/main/java/org/eclipse/microprofile/metrics/test/MpMetricTest.java +++ b/tck/rest/src/main/java/org/eclipse/microprofile/metrics/test/MpMetricTest.java @@ -1,6 +1,6 @@ /* ********************************************************************** - * Copyright (c) 2017, 2022 Contributors to the Eclipse Foundation + * Copyright (c) 2017, 2024 Contributors to the Eclipse Foundation * * See the NOTICES file(s) distributed with this work for additional * information regarding copyright ownership. @@ -49,8 +49,8 @@ /** * Rest Test Kit * - * @author Heiko W. Rupp - * @author Don Bourne + * @author Heiko W. Rupp + * @author Don Bourne */ @SuppressWarnings("CdiInjectionPointsInspection") @RunWith(Arquillian.class)