From da7c5c5619fe75fa92dd54872a061c15098eae5c Mon Sep 17 00:00:00 2001 From: Jan Supol Date: Wed, 27 Feb 2019 15:23:25 +0100 Subject: [PATCH] Replaced import used for javadoc with full name in the javadoc Signed-off-by: Jan Supol --- .../jsr166/org/glassfish/jersey/internal/jsr166/Flow.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core-common/src/main/jsr166/org/glassfish/jersey/internal/jsr166/Flow.java b/core-common/src/main/jsr166/org/glassfish/jersey/internal/jsr166/Flow.java index 5e04b817d2..bcb90c8a82 100644 --- a/core-common/src/main/jsr166/org/glassfish/jersey/internal/jsr166/Flow.java +++ b/core-common/src/main/jsr166/org/glassfish/jersey/internal/jsr166/Flow.java @@ -6,8 +6,6 @@ package org.glassfish.jersey.internal.jsr166; -import java.util.concurrent.Executor; - /** * Interrelated interfaces and static methods for establishing * flow-controlled components in which {@link Publisher Publishers} @@ -28,7 +26,7 @@ * {@link Subscription} implementation; constructing one in method * {@code subscribe} and issuing it to the calling {@link * Subscriber}. It publishes items to the subscriber asynchronously, - * normally using an {@link Executor}. For example, here is a very + * normally using an {@link java.util.concurrent.Executor}. For example, here is a very * simple publisher that only issues (when requested) a single {@code * TRUE} item to a single subscriber. Because the subscriber receives * only a single item, this class does not use buffering and ordering