Redundant as they are caught in finally

This commit is contained in:
T00thpick1 2013-01-18 16:18:44 -05:00
parent ed68f227ac
commit 7d416a90de

View File

@ -262,7 +262,6 @@ public class Database {
try { try {
statement = connection.prepareStatement(sql); statement = connection.prepareStatement(sql);
statement.executeUpdate(); statement.executeUpdate();
statement.close();
return true; return true;
} }
catch (SQLException ex) { catch (SQLException ex) {
@ -296,7 +295,6 @@ public class Database {
try { try {
statement = connection.prepareStatement(sql); statement = connection.prepareStatement(sql);
ret = statement.executeUpdate(); ret = statement.executeUpdate();
statement.close();
return ret; return ret;
} catch (SQLException ex) { } catch (SQLException ex) {
printErrors(ex); printErrors(ex);