mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
16.56.2009 288851e601ed14742b0ba0bfbc54a2846c2017b4
sdk/src/org/opends/sdk/ConnectionPool.java
@@ -48,7 +48,7 @@
/**
 * A simple connection pool implementation.
 */
public final class ConnectionPool extends
final class ConnectionPool extends
    AbstractConnectionFactory<AsynchronousConnection>
{
  private final ConnectionFactory<?> connectionFactory;
@@ -499,15 +499,14 @@
  /**
   * Creates a new connection pool which will maintain {@code poolSize}
   * connections created using the provided connection factory.
   *
   *
   * @param connectionFactory
   *          The connection factory to use for creating new
   *          connections.
   * @param poolSize
   *          The maximum size of the connection pool.
   */
  public ConnectionPool(ConnectionFactory<?> connectionFactory,
      int poolSize)
  ConnectionPool(ConnectionFactory<?> connectionFactory, int poolSize)
  {
    this.connectionFactory = connectionFactory;
    this.poolSize = poolSize;