mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-15 05:41:51 +08:00
Fixed an error causing typo in UserInfoTable
This commit is contained in:
parent
e5138d8ec7
commit
70dca38281
@ -327,7 +327,7 @@ public class UserInfoTable extends UserUUIDTable {
|
|||||||
public Map<UUID, Integer> processResults(ResultSet set) throws SQLException {
|
public Map<UUID, Integer> processResults(ResultSet set) throws SQLException {
|
||||||
Map<UUID, Integer> map = new HashMap<>();
|
Map<UUID, Integer> map = new HashMap<>();
|
||||||
while (set.next()) {
|
while (set.next()) {
|
||||||
UUID serverUUID = UUID.fromString(Col.SERVER_UUID.get());
|
UUID serverUUID = UUID.fromString(set.getString(Col.SERVER_UUID.get()));
|
||||||
int count = set.getInt("count");
|
int count = set.getInt("count");
|
||||||
map.put(serverUUID, count);
|
map.put(serverUUID, count);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user