[ANY] Improve code quality.

This commit is contained in:
sq179 2019-04-10 00:37:51 +03:00
parent 8509fd37c7
commit 888d98586a

View file

@ -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