Skip to content
Snippets Groups Projects
Commit 09488993 authored by Drahomír Karchňák's avatar Drahomír Karchňák
Browse files

#93 Fixed a bug, which caused a game crash once game was trying to get data from database

parent 71f63a88
Branches
Tags
No related merge requests found
......@@ -262,8 +262,8 @@ public class Game {
ResultSet resultSet = statement.executeQuery();
while(resultSet.next()) {
resultSet.close();
result = resultSet.getString(1);
resultSet.close();
}
} catch (SQLException e) {
e.printStackTrace();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment