BUG-2159: fix wrong javadocs
[yangtools.git] / websocket / websocket-client / src / main / java / org / opendaylight / yangtools / websocket / client / WebSocketIClient.java
index dce8e396a80a95f3ccccfc45570e0705d3859a8b..23253b2b3ddeadeb9252fb04369ef879cb37952e 100644 (file)
@@ -95,8 +95,8 @@ public class WebSocketIClient {
     }
 
     /**
-     * Writes a String message via {@link ChannelOutboundInvoker} through the
-     * {@link ChannelPipeline} and request to actual {@link #flush()} to flush
+     * Writes a String message through the
+     * {@link ChannelPipeline} and request to actual {@link Channel#flush()} to flush
      * all pending data to the actual transport.
      *
      * @param message
@@ -107,8 +107,8 @@ public class WebSocketIClient {
     }
 
     /**
-     * Writes a Object message via {@link ChannelOutboundInvoker} through the
-     * {@link ChannelPipeline} and request to actual {@link #flush()} to flush
+     * Writes a Object message through the
+     * {@link ChannelPipeline} and request to actual {@link Channel#flush()} to flush
      * all pending data to the actual transport.
      *
      * @param message
@@ -119,9 +119,9 @@ public class WebSocketIClient {
     }
 
     /**
-     * Writes {@link PingWebSocketFrame} via {@link ChannelOutboundInvoker}
+     * Writes {@link PingWebSocketFrame}
      * through the {@link ChannelPipeline} and request to actual
-     * {@link #flush()} to flush all pending data to the actual transport.
+     * {@link Channel#flush()} to flush all pending data to the actual transport.
      */
     public void ping() {
         clientChannel.writeAndFlush(new PingWebSocketFrame(Unpooled