From 92ee24efb8542a00d7529c242e7123671379df4c Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Fri, 13 Jul 2018 13:07:19 -0600 Subject: [PATCH] Javadoc. --- .../client5/http/classic/methods/HttpExecutionAware.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/httpclient5/src/main/java/org/apache/hc/client5/http/classic/methods/HttpExecutionAware.java b/httpclient5/src/main/java/org/apache/hc/client5/http/classic/methods/HttpExecutionAware.java index f6a6700e2..ab4bb906a 100644 --- a/httpclient5/src/main/java/org/apache/hc/client5/http/classic/methods/HttpExecutionAware.java +++ b/httpclient5/src/main/java/org/apache/hc/client5/http/classic/methods/HttpExecutionAware.java @@ -30,8 +30,8 @@ package org.apache.hc.client5.http.classic.methods; import org.apache.hc.core5.concurrent.Cancellable; /** - * Interface to be implemented by any object that wishes to be notified of - * blocking I/O operations that could be cancelled. + * Interface to be implemented by any object that wishes to be notified of blocking I/O operations + * that could be cancelled. * * @since 4.3 */ @@ -41,8 +41,10 @@ public interface HttpExecutionAware { /** * Sets {@link Cancellable} for the ongoing operation. + * + * @param cancellable + * {@link Cancellable} for the ongoing operation. */ void setCancellable(Cancellable cancellable); } -