mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
[ANY] Improve code quality.
This commit is contained in:
parent
8509fd37c7
commit
888d98586a
1 changed files with 2 additions and 4 deletions
|
@ -50,10 +50,8 @@ public String uuidToUsername(UUID uuid) throws IOException {
|
|||
protected boolean updateAuth(UUID uuid, String username, String accessToken) throws IOException {
|
||||
boolean isUUIDupdated = updUUID(uuid, username).equals("OK");
|
||||
boolean isAccessTokenUpdated = updAccessToken(accessToken, username).equals("OK");
|
||||
if (isUUIDupdated == true && isAccessTokenUpdated == true) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
return isUUIDupdated && isAccessTokenUpdated;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue