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