You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2011/09/27 09:56:50 UTC

svn commit: r1176256 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java

Author: kahatlen
Date: Tue Sep 27 07:56:50 2011
New Revision: 1176256

URL: http://svn.apache.org/viewvc?rev=1176256&view=rev
Log:
DERBY-5406: Fixed typo in comment

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java?rev=1176256&r1=1176255&r2=1176256&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java Tue Sep 27 07:56:50 2011
@@ -416,7 +416,7 @@ recompileOutOfDatePlan:
                     boolean recompile = false;
 
                     // Check if the statement was invalidated while it was
-                    // compiled. The compiled version of the statement may or
+                    // compiled. If so, the newly compiled plan may or may
                     // not be up to date anymore, so we recompile the statement
                     // if this happens. Note that this is checked in a finally
                     // block, so we also retry if an exception was thrown. The