Author: tv
Date: Sun Mar 22 18:18:34 2009
New Revision: 757229

URL: http://svn.apache.org/viewvc?rev=757229&view=rev
Log:
Small fix to stay JDK-1.4-compatible

Modified:
    
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java

Modified: 
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java
URL: 
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java?rev=757229&r1=757228&r2=757229&view=diff
==============================================================================
--- 
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java
 (original)
+++ 
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java
 Sun Mar 22 18:18:34 2009
@@ -231,7 +231,7 @@
             if ( ! haveFromTable )    // Last chance. Get it from the func.
             {
                 String col =  f.getArgument(0).toString();
-                if ( col.contains(".") ) 
+                if ( col.indexOf('.') >= 0) 
                 {
                     // Kludgy Where table.col = table.col clause to force
                     // from table identification.



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscr...@db.apache.org
For additional commands, e-mail: torque-dev-h...@db.apache.org

Reply via email to