Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doclint errors #793

Merged
merged 1 commit into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -49,8 +49,8 @@
/**
* Rest Test Kit
*
* @author Heiko W. Rupp <hrupp@redhat.com>
* @author Don Bourne <dbourne@ca.ibm.com>
* @author <a href="mailto:hrupp@redhat.com">Heiko W. Rupp</a>
* @author <a href="mailto:dbourne@ca.ibm.com">Don Bourne</a>
*/
@SuppressWarnings("CdiInjectionPointsInspection")
@RunWith(Arquillian.class)
Expand Down