fix links to github issues in javadoc

This commit is contained in:
Sergey Polovko 2016-01-04 05:09:52 +03:00 committed by Norman Maurer
parent 1b0adb334b
commit bc2559ceb1
3 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,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) {

View File

@ -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) {

View File

@ -56,7 +56,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) {