From 036abda6015d1dd3724921bac69d930d70f02727 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Wed, 3 Sep 2008 07:51:25 +0000 Subject: [PATCH] Calculated -> Obtained --- .../netty/channel/socket/nio/NioClientSocketChannelFactory.java | 2 +- .../netty/channel/socket/nio/NioServerSocketChannelFactory.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/jboss/netty/channel/socket/nio/NioClientSocketChannelFactory.java b/src/main/java/org/jboss/netty/channel/socket/nio/NioClientSocketChannelFactory.java index fc83356b51..29e7c9f304 100644 --- a/src/main/java/org/jboss/netty/channel/socket/nio/NioClientSocketChannelFactory.java +++ b/src/main/java/org/jboss/netty/channel/socket/nio/NioClientSocketChannelFactory.java @@ -100,7 +100,7 @@ public class NioClientSocketChannelFactory implements ClientSocketChannelFactory * Creates a new instance. Calling this constructor is same with calling * {@link #NioClientSocketChannelFactory(Executor, Executor, int)} with * the number of available processors in the machine. The number of - * available processors is calculated by {@link Runtime#availableProcessors()}. + * available processors is obtained by {@link Runtime#availableProcessors()}. * * @param bossExecutor * the {@link Executor} which will execute the boss thread diff --git a/src/main/java/org/jboss/netty/channel/socket/nio/NioServerSocketChannelFactory.java b/src/main/java/org/jboss/netty/channel/socket/nio/NioServerSocketChannelFactory.java index c8b26d90f3..f540683bf3 100644 --- a/src/main/java/org/jboss/netty/channel/socket/nio/NioServerSocketChannelFactory.java +++ b/src/main/java/org/jboss/netty/channel/socket/nio/NioServerSocketChannelFactory.java @@ -104,7 +104,7 @@ public class NioServerSocketChannelFactory implements ServerSocketChannelFactory * Creates a new instance. Calling this constructor is same with calling * {@link #NioServerSocketChannelFactory(Executor, Executor, int)} with * the number of available processors in the machine. The number of - * available processors is calculated by {@link Runtime#availableProcessors()}. + * available processors is obtained by {@link Runtime#availableProcessors()}. * * @param bossExecutor * the {@link Executor} which will execute the boss threads