mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-01 22:14:01 +03:00
[ANY] Rename AuthCodePassword field to the uri
This commit is contained in:
parent
f4d0783d94
commit
eb3d0b0b38
1 changed files with 3 additions and 3 deletions
|
@ -3,10 +3,10 @@
|
|||
import pro.gravit.launcher.base.request.auth.AuthRequest;
|
||||
|
||||
public class AuthCodePassword implements AuthRequest.AuthPasswordInterface {
|
||||
public final String code;
|
||||
public final String uri;
|
||||
|
||||
public AuthCodePassword(String code) {
|
||||
this.code = code;
|
||||
public AuthCodePassword(String uri) {
|
||||
this.uri = uri;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue