Calculated -> Obtained

This commit is contained in:
Trustin Lee 2008-09-03 07:51:25 +00:00
parent d96b633b5f
commit 036abda601
2 changed files with 2 additions and 2 deletions

View File

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

View File

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