refactor: this can also be final

This commit is contained in:
Breno A.
2024-06-09 09:00:39 -03:00
Unverified
parent 9fa0f2bcad
commit 7d3abb083b
18 changed files with 168 additions and 167 deletions
@@ -3,10 +3,10 @@ package emu.grasscutter.server.http.objects;
public class LoginResultJson {
public String message;
public int retcode;
public VerifyData data = new VerifyData();
public final VerifyData data = new VerifyData();
public static class VerifyData {
public VerifyAccountData account = new VerifyAccountData();
public final VerifyAccountData account = new VerifyAccountData();
public boolean device_grant_required = false;
public String realname_operation = "NONE";
public boolean realperson_required = false;