From 589f7ef9a237378f0b85f7867759d0c2de69c059 Mon Sep 17 00:00:00 2001 From: James Anderson Date: Fri, 5 Feb 2021 09:54:48 -0600 Subject: [PATCH] Fix JavaDoc tags for Java8 --- src/main/java/com/auth0/net/Request.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/auth0/net/Request.java b/src/main/java/com/auth0/net/Request.java index f28e1040..a369d3db 100644 --- a/src/main/java/com/auth0/net/Request.java +++ b/src/main/java/com/auth0/net/Request.java @@ -24,12 +24,12 @@ public interface Request { /** * Executes this request asynchronously. * - * @apiNote This method was added after the interface was released in version 1.0. - * It is defined as a default method for compatibility reasons. - * From version 2.0 on, the method will be abstract and all implementations of this interface - * will have to provide their own implementation. + * Note: This method was added after the interface was released in version 1.0. + * It is defined as a default method for compatibility reasons. + * From version 2.0 on, the method will be abstract and all implementations of this interface + * will have to provide their own implementation. * - * @implSpec The default implementation throws an {@linkplain UnsupportedOperationException}. + * The default implementation throws an {@linkplain UnsupportedOperationException}. * * @return a {@linkplain CompletableFuture} representing the specified request. */