1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-08-26 15:54:22 +02:00

Don't read nodes twice in SqlStorage (#3836)

This commit is contained in:
Gilberto Garcia
2024-02-15 14:03:02 -06:00
committed by GitHub
parent 96008f6338
commit 7d89c97907

View File

@@ -874,7 +874,7 @@ public class SqlStorage implements StorageImplementation {
while (rs.next()) { while (rs.next()) {
Node node = readNode(rs); Node node = readNode(rs);
if (node != null) { if (node != null) {
nodes.add(readNode(rs)); nodes.add(node);
} }
} }
} }