List:Internals« Previous MessageNext Message »
From:mmatthews Date:August 31 2005 9:42pm
Subject:Connector/J commit: r4179 - branches/branch_5_0/connector-j/src/com/mysql/jdbc
View as plain text  
Modified:
   branches/branch_5_0/connector-j/src/com/mysql/jdbc/Connection.java
Log:
assignment fixup in prepareCall().

Modified: branches/branch_5_0/connector-j/src/com/mysql/jdbc/Connection.java
===================================================================
--- branches/branch_5_0/connector-j/src/com/mysql/jdbc/Connection.java	2005-08-31 19:41:34
UTC (rev 4178)
+++ branches/branch_5_0/connector-j/src/com/mysql/jdbc/Connection.java	2005-08-31 19:42:26
UTC (rev 4179)
@@ -4193,7 +4193,7 @@
 				if (cachedParamInfo != null) {
 					cStmt = new CallableStatement(this, cachedParamInfo);
 				} else {
-					cStmt = cStmt = parseCallableStatement(sql);
+					cStmt = parseCallableStatement(sql);
 
 					cachedParamInfo = cStmt.paramInfo;
 

Thread
Connector/J commit: r4179 - branches/branch_5_0/connector-j/src/com/mysql/jdbcmmatthews31 Aug