You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/07/20 20:58:49 UTC

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

Author: ggregory
Date: Sun Jul 20 18:58:48 2014
New Revision: 1612152

URL: http://svn.apache.org/r1612152
Log:
Fix bogus Javadoc "<code>false</false>".

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

Modified: commons/proper/dbcp/trunk/src/main/java/org/apache/commons/dbcp2/BasicDataSource.java
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/src/main/java/org/apache/commons/dbcp2/BasicDataSource.java?rev=1612152&r1=1612151&r2=1612152&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/src/main/java/org/apache/commons/dbcp2/BasicDataSource.java (original)
+++ commons/proper/dbcp/trunk/src/main/java/org/apache/commons/dbcp2/BasicDataSource.java Sun Jul 20 18:58:48 2014
@@ -1309,7 +1309,7 @@ public class BasicDataSource implements 
      * Returns the value of the flag that controls whether or not connections
      * being returned to the pool will checked and configured with
      * {@link Connection#setAutoCommit(boolean) Connection.setAutoCommit(true)}
-     * if the auto commit setting is <code>false</false> when the connection
+     * if the auto commit setting is {@code false} when the connection
      * is returned. It is <code>true</code> by default.
      */
     public boolean getEnableAutoCommitOnReturn() {
@@ -1320,7 +1320,7 @@ public class BasicDataSource implements 
      * Sets the value of the flag that controls whether or not connections
      * being returned to the pool will checked and configured with
      * {@link Connection#setAutoCommit(boolean) Connection.setAutoCommit(true)}
-     * if the auto commit setting is <code>false</false> when the connection
+     * if the auto commit setting is {@code false} when the connection
      * is returned. It is <code>true</code> by default.
      */
     public void setEnableAutoCommitOnReturn(boolean enableAutoCommitOnReturn) {