Skip to content

Commit

Permalink
[FIX] Compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gravit0 committed Jun 1, 2024
1 parent c6930de commit 7f6a645
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected String makeUserCols() {
@Override
protected MySQLUser constructUser(ResultSet set) throws SQLException {
return set.next() ? new MySQLUser(UUID.fromString(set.getString(uuidColumn)), set.getString(usernameColumn),
set.getString(accessTokenColumn), set.getString(serverIDColumn), set.getString(passwordColumn), requestPermissions(set.getString(uuidColumn)), set.getLong(hardwareIdColumn)) : null;
set.getString(accessTokenColumn), set.getString(serverIDColumn), set.getString(passwordColumn), set.getLong(hardwareIdColumn)) : null;
}

private MySQLUserHardware fetchHardwareInfo(ResultSet set) throws SQLException, IOException {
Expand Down Expand Up @@ -336,8 +336,8 @@ public String toString() {
public static class MySQLUser extends SQLUser {
protected long hwidId;

public MySQLUser(UUID uuid, String username, String accessToken, String serverId, String password, ClientPermissions permissions, long hwidId) {
super(uuid, username, accessToken, serverId, password, permissions);
public MySQLUser(UUID uuid, String username, String accessToken, String serverId, String password, long hwidId) {
super(uuid, username, accessToken, serverId, password);
this.hwidId = hwidId;
}

Expand Down

0 comments on commit 7f6a645

Please sign in to comment.