You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2014/01/29 10:14:45 UTC

svn commit: r1562381 - /commons/proper/dbcp/trunk/src/java/org/apache/commons/dbcp2/BasicDataSource.java

Author: markt
Date: Wed Jan 29 09:14:44 2014
New Revision: 1562381

URL: http://svn.apache.org/r1562381
Log:
Fix Javadoc

Modified:
    commons/proper/dbcp/trunk/src/java/org/apache/commons/dbcp2/BasicDataSource.java

Modified: commons/proper/dbcp/trunk/src/java/org/apache/commons/dbcp2/BasicDataSource.java
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/src/java/org/apache/commons/dbcp2/BasicDataSource.java?rev=1562381&r1=1562380&r2=1562381&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/src/java/org/apache/commons/dbcp2/BasicDataSource.java (original)
+++ commons/proper/dbcp/trunk/src/java/org/apache/commons/dbcp2/BasicDataSource.java Wed Jan 29 09:14:44 2014
@@ -363,8 +363,6 @@ public class BasicDataSource
      * Returns the LIFO property.
      *
      * @return true if connection pool behaves as a LIFO queue.
-     *
-     * @see #lifo
      */
     @Override
     public synchronized boolean getLifo() {
@@ -614,10 +612,9 @@ public class BasicDataSource
         GenericKeyedObjectPoolConfig.DEFAULT_MAX_TOTAL;
 
     /**
-     * Gets the value of the {@link #maxOpenPreparedStatements} property.
+     * Gets the value of the <code>maxOpenPreparedStatements</code> property.
      *
      * @return the maximum number of open statements
-     * @see #maxOpenPreparedStatements
      */
     @Override
     public synchronized int getMaxOpenPreparedStatements() {
@@ -625,7 +622,7 @@ public class BasicDataSource
     }
 
     /**
-     * <p>Sets the value of the {@link #maxOpenPreparedStatements}
+     * <p>Sets the value of the <code>maxOpenPreparedStatements</code>
      * property.</p>
      * <p>
      * Note: this method currently has no effect once the pool has been
@@ -634,7 +631,6 @@ public class BasicDataSource
      * setLoginTimeout, getLoginTimeout, getLogWriter.</code></p>
      *
      * @param maxOpenStatements the new maximum number of prepared statements
-     * @see #maxOpenPreparedStatements
      */
     public synchronized void setMaxOpenPreparedStatements(int maxOpenStatements) {
         this.maxOpenPreparedStatements = maxOpenStatements;