Update Javadoc to reflect changed default for useEquals
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 17 Nov 2009 17:39:51 +0000 (17:39 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 17 Nov 2009 17:39:51 +0000 (17:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@881402 13f79535-47bb-0310-9956-ffa450edef68

modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/JdbcInterceptor.java

index b6215ec..00802c0 100644 (file)
@@ -72,7 +72,9 @@ public abstract class JdbcInterceptor implements InvocationHandler {
      */
     private JdbcInterceptor next = null;
     /**
-     * Property that decides how we do string comparison, default is reference (==)
+     * Property that decides how we do string comparison, default is to use
+     * {@link String#equals(Object)}. If set to <code>false</code> then the
+     * equality operator (==) is used.
      */
     private boolean useEquals = true;