Author: tbedford
Date: 2008-08-13 11:02:03 +0200 (Wed, 13 Aug 2008)
New Revision: 11544
Log:
Braces were mistakenly commented out, resulting in compile time error.
Modified:
trunk/refman-common/connector-j.xml
Modified: trunk/refman-common/connector-j.xml
===================================================================
--- trunk/refman-common/connector-j.xml 2008-08-13 08:45:36 UTC (rev 11543)
+++ trunk/refman-common/connector-j.xml 2008-08-13 09:02:03 UTC (rev 11544)
Changed blocks: 2, Lines Added: 2, Lines Deleted: 2; 687 bytes
@@ -2818,7 +2818,7 @@
if (rs != null) {
try {
rs.close();
- } catch (SQLException sqlEx) { // ignore }
+ } catch (SQLException sqlEx) { } // ignore
rs = null;
}
@@ -2826,7 +2826,7 @@
if (stmt != null) {
try {
stmt.close();
- } catch (SQLException sqlEx) { // ignore }
+ } catch (SQLException sqlEx) { } // ignore
stmt = null;
}
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r11544 - trunk/refman-common | anthony.bedford | 13 Aug |