From ec8c56915bafac15f5d99cddd12b8f7d309b4e1a Mon Sep 17 00:00:00 2001 From: Sergey Polovko Date: Mon, 4 Jan 2016 05:09:52 +0300 Subject: [PATCH] fix links to github issues in javadoc --- .../java/io/netty/channel/socket/nio/NioDatagramChannel.java | 2 +- .../io/netty/channel/socket/nio/NioServerSocketChannel.java | 2 +- .../main/java/io/netty/channel/socket/nio/NioSocketChannel.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/transport/src/main/java/io/netty/channel/socket/nio/NioDatagramChannel.java b/transport/src/main/java/io/netty/channel/socket/nio/NioDatagramChannel.java index 099b9f2b70..ef1a29ed5d 100644 --- a/transport/src/main/java/io/netty/channel/socket/nio/NioDatagramChannel.java +++ b/transport/src/main/java/io/netty/channel/socket/nio/NioDatagramChannel.java @@ -80,7 +80,7 @@ public final class NioDatagramChannel * Use the {@link SelectorProvider} to open {@link SocketChannel} and so remove condition in * {@link SelectorProvider#provider()} which is called by each DatagramChannel.open() otherwise. * - * See #2308. + * See #2308. */ return provider.openDatagramChannel(); } catch (IOException e) { diff --git a/transport/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannel.java b/transport/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannel.java index 3281d193bb..ae2d76f94b 100644 --- a/transport/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannel.java +++ b/transport/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannel.java @@ -52,7 +52,7 @@ public class NioServerSocketChannel extends AbstractNioMessageChannel * Use the {@link SelectorProvider} to open {@link SocketChannel} and so remove condition in * {@link SelectorProvider#provider()} which is called by each ServerSocketChannel.open() otherwise. * - * See #2308. + * See #2308. */ return provider.openServerSocketChannel(); } catch (IOException e) { diff --git a/transport/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java b/transport/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java index a7b9310575..4f949eff19 100644 --- a/transport/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java +++ b/transport/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java @@ -55,7 +55,7 @@ public class NioSocketChannel extends AbstractNioByteChannel implements io.netty * Use the {@link SelectorProvider} to open {@link SocketChannel} and so remove condition in * {@link SelectorProvider#provider()} which is called by each SocketChannel.open() otherwise. * - * See #2308. + * See #2308. */ return provider.openSocketChannel(); } catch (IOException e) {