fix links to github issues in javadoc
This commit is contained in:
parent
b80776f41c
commit
ec8c56915b
@ -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 <a href="See https://github.com/netty/netty/issues/2308">#2308</a>.
|
||||
* See <a href="https://github.com/netty/netty/issues/2308">#2308</a>.
|
||||
*/
|
||||
return provider.openDatagramChannel();
|
||||
} catch (IOException e) {
|
||||
|
@ -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 <a href="See https://github.com/netty/netty/issues/2308">#2308</a>.
|
||||
* See <a href="https://github.com/netty/netty/issues/2308">#2308</a>.
|
||||
*/
|
||||
return provider.openServerSocketChannel();
|
||||
} catch (IOException e) {
|
||||
|
@ -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 <a href="See https://github.com/netty/netty/issues/2308">#2308</a>.
|
||||
* See <a href="https://github.com/netty/netty/issues/2308">#2308</a>.
|
||||
*/
|
||||
return provider.openSocketChannel();
|
||||
} catch (IOException e) {
|
||||
|
Loading…
Reference in New Issue
Block a user