jmcnally    02/01/26 14:18:47

  Modified:    jdbc2pool/src/java/org/apache/commons/jdbc2pool
                        ConnectionPool.java
  Log:
  fix javadoc warnings
  
  Revision  Changes    Path
  1.3       +3 -6      
jakarta-commons-sandbox/jdbc2pool/src/java/org/apache/commons/jdbc2pool/ConnectionPool.java
  
  Index: ConnectionPool.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/jdbc2pool/src/java/org/apache/commons/jdbc2pool/ConnectionPool.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ConnectionPool.java       17 Jan 2002 05:44:25 -0000      1.2
  +++ ConnectionPool.java       26 Jan 2002 22:18:47 -0000      1.3
  @@ -82,7 +82,7 @@
    * @author <a href="mailto:[EMAIL PROTECTED]";>Magn�s ��r Torfason</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Jon S. Stevens</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>John McNally</a>
  - * @version $Id: ConnectionPool.java,v 1.2 2002/01/17 05:44:25 jmcnally Exp $
  + * @version $Id: ConnectionPool.java,v 1.3 2002/01/26 22:18:47 jmcnally Exp $
    */
   class ConnectionPool
       implements ConnectionEventListener
  @@ -227,7 +227,7 @@
        * @param password The password of the database user.
        * @return         A database connection.
        *
  -     * @exception Exception
  +     * @exception SQLException
        */
       synchronized final PooledConnection 
           getConnection(String username, String password)
  @@ -264,7 +264,7 @@
        * <code>password</code>.
        *
        * @return A database connection.
  -     * @exception Exception
  +     * @exception SQLException
        */
       private PooledConnection getNewConnection()
           throws SQLException
  @@ -382,7 +382,6 @@
        *
        * @param connection The connection to test.
        * @return True if the connection is expired, false otherwise.
  -     * @exception Exception
        */
       private boolean isExpired( PooledConnection connection )
       {
  @@ -398,7 +397,6 @@
        *
        * @param connection The connection to test.
        * @return True if the connection is valid, false otherwise.
  -     * @exception Exception
        */
       private boolean isValid( PooledConnection connection )
       {
  @@ -546,7 +544,6 @@
        * be called by the requestor when finished with the connection.
        *
        * @param connection The database connection to release.
  -     * @exception Exception Trouble releasing the connection.
        */
       private synchronized void releaseConnection(PooledConnection pcon)
       {
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to