Mention correct order in SimplechannelPool javadocs

This commit is contained in:
Norman Maurer 2015-05-27 09:09:56 +02:00
parent 6aa9636e0f
commit 2a848ce1c9

View File

@ -37,7 +37,7 @@ import static io.netty.util.internal.ObjectUtil.checkNotNull;
* Simple {@link ChannelPool} implementation which will create new {@link Channel}s if someone tries to acquire
* a {@link Channel} but none is in the pool atm. No limit on the maximal concurrent {@link Channel}s is enforced.
*
* This implementation uses FIFO order for {@link Channel}s in the {@link ChannelPool}.
* This implementation uses LIFO order for {@link Channel}s in the {@link ChannelPool}.
*
*/
public class SimpleChannelPool implements ChannelPool {