Fix typo in RemoveDanglingServerDataPatch

This commit is contained in:
Aurora Lahtela 2022-05-25 14:41:46 +03:00
parent 66ed6cfc5f
commit 513900ed3d
1 changed files with 1 additions and 1 deletions

View File

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