Permission error fix when plugin added new permission

This commit is contained in:
ArpyAge 2022-10-13 19:45:58 +02:00
parent 50f0dc7fb8
commit 8ee87fcdd9

View File

@ -40,8 +40,7 @@ public class PermissionsManager {
private void loadPermissions() {
this.badges.clear();
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); PreparedStatement statement = connection.prepareStatement("SELECT * FROM permissions ORDER BY id ASC")) {
try (ResultSet set = statement.executeQuery()) {
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM permissions ORDER BY id ASC")) {
while (set.next()) {
Rank rank = null;
if (!this.ranks.containsKey(set.getInt("id"))) {
@ -60,7 +59,6 @@ public class PermissionsManager {
this.badges.get(rank.getBadge()).add(rank);
}
}
}
} catch (SQLException e) {
LOGGER.error("Caught SQL exception", e);
}