Attempting to fix some possible memory leaks. Son't know if I'm actually

helping anything though.
This commit is contained in:
gmcferrin
2013-01-09 00:01:33 -05:00
parent 4e6086e8ed
commit 2b6b7b899e
2 changed files with 13 additions and 3 deletions

View File

@ -155,7 +155,7 @@ public class Database {
PreparedStatement statement = null;
try {
if(!checkConnected()) return;
if(!checkConnected()) return;
statement = connection.prepareStatement(sql);
resultSet = statement.executeQuery();