mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-15 05:41:51 +08:00
Fix typo in RemoveDanglingServerDataPatch
This commit is contained in:
parent
66ed6cfc5f
commit
513900ed3d
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user