Fix typo in RemoveDanglingServerDataPatch

This commit is contained in:
Aurora Lahtela 2022-05-25 14:41:46 +03:00
parent 66ed6cfc5f
commit 513900ed3d

View File

@ -123,7 +123,7 @@ public class RemoveDanglingServerDataPatch extends Patch {
public Set<String> processResults(ResultSet set) throws SQLException { public Set<String> processResults(ResultSet set) throws SQLException {
HashSet<String> uuids = new HashSet<>(); HashSet<String> uuids = new HashSet<>();
while (set.next()) { while (set.next()) {
uuids.add(set.getString("uuid")); uuids.add(set.getString("server_uuid"));
} }
return uuids; return uuids;
} }